.room h2 {
    font-family: "SenseRegular", sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 10px;
}

a.btn {
    display: inline-block;
    border: 1px solid #4E4E42;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 4px;
    transition-duration: 500ms;
}

a.roomstyle {
    color: #4E4E42;
    margin-top: 30px;
}

a.roomstyle:hover {
    background-color: #4E4E42;
    color: #f5f0da;
}

.room:last-child { border: none;}

.room .mgItem .content { line-height: 20px; text-align: justify;}


@media all and (max-width: 799px) {
    .room:not(.gallery) h2 { margin-top: 50px; }

    .room a.btn { margin-top: 20px; }

    .room {
        padding: 40px 0;
        border-bottom: 1px solid;
    }

    .room.gallery h2, .room h2 { text-align: left; }
}

/* tablet */
@media (min-width: 800px) and (max-width: 940px){
    .room {
        display: flex;
        justify-content: space-between;
        padding: 50px 0;
        border-bottom: 1px solid;
    }

    .room > div {
        width: calc(50% - 40px);
    }
}

@media (min-width: 941px){
    .room {
        display: flex;
        justify-content: space-between;
        padding: 50px 0;
        border-bottom: 1px solid;
    }
    .room > div:first-child { width: 40%; }

    .room > div.mgItem {
        width: calc(60% - 80px);
    }
}

@media all and (min-width: 800px) {

    .room.gallery h2, .room h2 { margin-top: 2px; text-align: left; }


    .room.bookbtn > div:last-child {
        display: flex;
        flex-direction: column;
    }

    .room.bookbtn > div:last-child > div:last-child { margin-top: auto;}

    .room.gallery a.btn { margin-bottom: 34px; }
}

/* facilities */
.facilities  { margin: 20px 0; }

.facilities a {
    position: relative;
    display: inline-block;
    letter-spacing: 0;
    text-transform: none;
    margin-right: 15px;
}

.facilities a span {
    display: none;
    opacity: 0;
    transition: opacity .5s ease;
}

.facilities a:hover span {
    display: block;
    position: absolute;
    border: 1px solid #9c9686;
    border-radius: 5px;
    background-color: #FFF;
    margin-top: 5px;
    padding: 5px 10px;
    max-width: 400px;
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
    opacity: 1;
    z-index: 1;
    min-width: max-content;
}
.facilities a img { transition: width .5s ease; }

.facilities a:hover img { 
    width: 85%;
    opacity: 60%; 
}
/*
.facilities a span:after,
.facilities a span:before {
    bottom: 100%;
    left: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.facilities a span.center:after,
.facilities a span.center:before { left: 50%; }

.facilities a span:after {
    border-bottom-color: #FFF;
    border-width: 6px;
    margin-left: -6px;
}

.facilities a span:before {
    border-bottom-color: #9c9686;
    border-width: 7px;
    margin-left: -7px;
}

*/



