.roomImg{
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.room_details_img{
    width:53%;
}
.room_details_options{
    width:47%;
}
.room_details_flex{
    padding: 50px 0;
    justify-content: space-between;
    width:80%;
    margin: auto;
}
.description_room{
    font-weight: 900;
    font-size: 14px;
}
.room_details_options{
    padding-left: 50px;
    font-weight: 900;
}
.room_details_caption{
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--main);
    text-shadow:1px 0px 0.5px var(--main);
}
.room_details_caption1{
    margin-top:20px;
    margin-bottom: 30px;
}
.option_room{
    padding: 15px 0;
    border-bottom: 1px solid grey;
    text-indent: 20px;
}
.room_price{
    margin-top: 40px;
    justify-content: space-between;
}
.price, .price_in_num{
    color: var(--main);
    font-size: 17px;
    font-weight: 900;
    text-shadow:1px 0px 0.5px var(--main);
}
.bookButton{
    padding: 9px;
    background-color: var(--main);
    color: var(--white);
    border: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 49px;
    width: 150px;
    letter-spacing: 1px;
    transition: background-color 1s;
}
.bookButton:hover{
    background-color: rgb(56, 47, 47);
}
.reservation{
    text-align: right;
}
/* other rooms */
.rooms_menu_flex{
    justify-content: space-around;
    flex-wrap: wrap;
    width: 80%;
    margin: auto;
}
.rooms_menu_flex_item{
    width: 31.5%;
    background-color: rgb(186 186 186 / 31%);
    border-radius: 10px;
    padding-bottom: 20px;
    margin-top: 30px;
}
.rooms_menu_img{
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    border-radius: 10px;
}
.rooms_menu_code{
    font-weight: 900;
    padding-top: 15px;
    width: 95%;
    margin: auto;

}
.rooms_menu_desc{
    margin-top: 7px;
    font-size: 13px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 500;
    width: 95%;
    margin: auto;
}
.menu_border{
    width: 100%;
    border-bottom: 2px solid rgba(184, 183, 183, 0.822);
    margin: 10px 0;
}
.menu_price{
    font-weight:900;
    font-size: 17px;
    width: 95%;
    margin: auto;
}
.rooms_menu_flex_item a{
    text-decoration: none;
    color:black;
}
.room_menu_more{
    width: 100%;
    margin: auto;
}
.room_menu_more_but{
    width: 100%;
    color: var(--main);
    font-weight:900;
    padding: 12px;
    border: 1px solid rgba(131, 131, 131, 0.877);
    background-color: rgb(231 231 231 / 31%);
    margin-top: 50px;
    border-radius: 5px;
}
.room_menu_more_but:hover{
    background-color: rgba(53, 18, 18, 0.123);
}
/* .other_rooms_caption{
    width: 100%;
    margin: auto;
    
} */
.other_rooms_caption{
    text-align: center;
    width: 100%;
    margin: auto;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--main);
    text-shadow: 1px 0px 0.5px var(--main);
    font-size:20px;
}
.rooms_menu_flex {
    margin-bottom: 50px;
}
@media screen and (max-width: 945px){
    .rooms_menu_img {
        height: 248px;
    }
}
@media screen and (max-width: 844px){
    .rooms_menu_flex {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .rooms_menu_flex_item{
        width: 55%;
    }
}
@media screen and (max-width: 785px){
    .room_details_flex {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .rooms_menu_flex_item{
        width: 65%;
    }
    .room_details_img, .room_details_options{
        width: 65%;
        padding-left: 0px;
        margin-top: 25px;
    }
}
@media screen and (max-width: 649px){
    .roomImg {
        height: 281px;
    }
}
@media screen and (max-width: 550px){
    .rooms_menu_flex_item{
        width: 75%;
    }
    .room_details_img, .room_details_options{
        width: 75%;
    }
}
@media screen and (max-width: 445px){
    .rooms_menu_flex_item{
        width: 85%;
    }
    .room_details_img, .room_details_options{
        width: 85%;
    }
}
@media screen and (max-width: 372px){
    .rooms_menu_flex_item{
        width: 90%;
    }
    .room_details_img, .room_details_options{
        width: 90%;
    }
    .room_details_caption{
        font-size: 18px;
        width: 100%;
        margin: auto;
        text-align: center;
        padding-top: 25px;
    }
    .other_rooms_caption {
        margin-bottom:4px !important;
    }
}




