/* Esta es una versión MODIFICADA del cjos.css de Tuarito para las habitaciones de Fataga */

/* ANIMACION */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* HABITACIONES */
.accommodation {
    background-color: #f9f9f9;
    padding: 70px 0;
}

.accommodation-title {
    text-align: center;
    margin: 30px 0;
}

.accommodation-title p {
    font-size: 14px;
    letter-spacing: 1px;
    color: #a3a3a3;
}

.accommodation-title h2 {
    font-size: 48px;
    line-height: 64px;
    margin: 30px 0;
}

.accommodation-title hr {
    width: 30px;
    margin: auto;
    margin-top: 15px;
}

/* PARTES ALOJAMIENTO */
.accommodation-parts {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.accommodation-part {
    width: 300px;
    margin: 50px 20px;
    margin-bottom: 0;
    text-align: center;
}

.accommodation-part h3 {
    color: #508bb6;
    font-size: 15px;
    line-height: 20px;
    font-weight: normal;
    letter-spacing: 5px;
    padding: 20px 0 10px;
}


span.iconic-image {
    display: block;
    overflow-y: hidden;
}
.accommodation-part img {    
    /* animation: 0.8s ease-out 0s 1 slideUp;
    animation-fill-mode: forwards; */
    opacity: 0;

    width: 100%;
}

.accommodation-part .button-more {
    padding-bottom: 30px;
}

.accommodation-part .button-more a {
    padding: 10px 30px;
}

.accommodation-part p {
    color: #a3a3a3;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 25px;
    line-height: 1.4rem;
    height: 68px;
}


@media screen and (min-width: 320px) and (max-width: 740px) {
    .accommodation-title {
        padding: 0 15px;
    }

    .accommodation-title h2 {
        font-size: 44px;
    }

    .accommodation-part {
        width: 100%;
        max-width: 450px;
    }

    .accommodation-part h3 {
        padding: 20px 0 5px;
    }
}
