.rooms {
    width: 100%;
    height: 100%;
    padding-bottom: 25px;
    background: white;
}

.roomsImage {
    filter: brightness(0.5);
    width: 100%;
    height: 80vh;
    background-image: url("/files/room.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.page-title {
    position: absolute;
    background-color: #b9874f;
    color: white;
    width: 250px;
    height: 50px;
    font-size: 25px;
    line-height: 50px;
    font-family: "Futura";
    text-transform: uppercase;
    margin-left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1;
    top: 77vh;
}

.description-container {
    background: white;
    padding-left: 5%;
    padding-right: 6%;
    padding-top: 70px;
    text-align: center;
    padding-bottom: 24px;
}

.page-description {
    font-family: "Futura";
    line-height: 22px;
}

.rooms-container {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.room {
    display: flex;
    flex-direction: row;
    background-color: white;
    width: 80%;
    min-height: 400px;
    margin-bottom: 30px;
    height: auto;
}

.room-img {
    width: 50%;
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

.room-info {
    position: relative;
    text-align: center;
    font-family: "BitstreamArrus";
    width: 50%;
    padding-top: 60px;
    height: auto;
    padding-bottom: 100px;
}

.room-name {
    font-size: 30px;
    padding-top: 30px;
    font-family: math;
}

.horizontal-line {
    width: 100px;
    border: 1px solid #b9874f;
    background-color: #b9874f;
    /* margin-left: 0px; */
    margin-top: 17px;
    margin-bottom: 0px;
}

.room-description {
    padding-left: 70px;
    padding-right: 70px;
    line-height: 21px;
}

.black-button:hover {
    background-color: white;
    color: #BA8750;
}

.black-button {
    background: #BA8750;
    color: white;
    text-transform: uppercase;
    width: fit-content;
    font-family: "Futura";
    padding: 0 15px;
    font-weight: bold;
    margin: 0;
    cursor: pointer;
    margin-left: 2%;
    /* line-height: 32px; */
    font-size: 12px;
    height: 40px;
    border: 1px solid #BA8750;
    display: flex;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    transition: .5s all ease-in-out;
}

.white-button:hover {
    background-color: black;
    color: white;
}

.white-button {
    border: 1px solid black;
    width: fit-content;
    height: 40px;
    padding: 0 15px;
    background: white;
    white-space: nowrap;
    font-family: "Futura";
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 29px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s all ease-in-out;
}

.button-container {
    display: inline-flex;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.filter-container {
    display: inline-flex;
    /* text-align: center; */
    margin-top: 50px;
    font-family: "Futura";
    font-size: 20px;
}

.room-filter {
    margin-right: 100px;
    height: 50px;
    cursor: pointer;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
    padding-right: 30px;
}

.room-filter-selected {
    color: white;
    background-color: #BA8750;
    font-size: 17px;
}

.no-margin {
    margin: 0px;
}

.hidden {
    display: none;
}

#room-image {
    width: 100%;
    height: 620px;
    background-size: cover;
    background-position: bottom;
    margin-bottom: 40px;
}

.room-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.room-image {
    margin: 30px;
    width: 500px;
}

#name {
    font-family: "BitstreamArrus";
}

.slick-btn {
    position: absolute;
    top: 50%;
    border-radius: 100%;
    border: none;
    color: white;
    background-color: #b9874f;
    z-index: 1;
    left: 10%;
}

.slick-btn-next {
    left: 90%;
}

.more-info {
    background-color: white;
    width: 100%;
    height: 100%;
    text-align: center;
    margin-bottom: 100px;
    padding-bottom: 30px;
}

#description {
    padding-left: 20%;
    padding-right: 20%;
    font-family: "BitstreamArrus";
    margin-top: 20px;
}

.services-title {
    text-transform: uppercase;
    border: solid 1px black;
    width: 120px;
    height: 30px;
    line-height: 30px;
    font-weight: 1000;
    font-size: 15px;
    font-family: "Futura";
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 30px;
    margin-bottom: 30px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.service-item {
    margin: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-img {
    width: 70px;
}

.service-name {
    font-family: "Futura";
}

.service-description {
    font-family: "BitstreamArrus";
    font-size: 12px;
    margin-top: 8px;
}

@media screen and (max-width: 768px) {
    .room {
        flex-direction: column;
        height: auto;
        min-height: auto;
        align-items: center;
        width: 100%;
    }
    .room-img {
        width: 100%;
        height: 220px;
        background-size: cover;
    }
    .room-description {
        padding: 0px;
        width: 100%;
        font-size: 14px;
    }
    .button-container {
        flex-direction: column;
        bottom: unset;
        flex-direction: row;
        margin-top: 40px;
        width: 100%;
        justify-content: center;
    }
    .room-info {
        padding-bottom: 120px;
        width: 90%;
        padding-top: 30px;
        text-align: center;
    }
    .white-button {
        margin-bottom: 20px;
        border: 1px solid black;
        width: 48%;
        margin-right: 2%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .filter-container {
        display: flex;
        justify-content: space-evenly;
        width: 100%;
    }
    .room-filter {
        margin-right: 0px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 600;
        width: max-content;
        padding-left: 6%;
        padding-right: 6%;
    }
    .more-info {
    width: 90%;
    margin-left: 5%;
    text-align: left;
}

div#description {
    padding: 0px;
}

hr.horizontal-line {
    margin-bottom: 11px;
    margin-left: 30px;
}

.services-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

#name {
    font-family: auto;
}
   #todo:hover {
    color: white;
    background-color: #BA8750;
}

#habitaciones:hover {
    color: white;
    background-color: #BA8750;
}

#suites:hover {
    color: white;
    background-color: #BA8750;
}
    .roomsImage {
    background-image: url(/files/roomMobile.jpg);
}
}