* {
    margin: 0px;
    padding: 0px;
    list-style-type: none !important;
    text-transform: none;
    text-decoration: none;
    user-select: none;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: Inter;
    src: url(Inter/Inter-VariableFont_slnt\,wght.ttf);
}

@font-face {
    font-family: Plus Jakarta Sans;
    src: url(Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf);
}

.room-image-featured {
    display: flex;
    position: relative;
}

.room-grid {
    width: 80%;
    display: grid;
    gap: 30px;
    grid-template-columns: 50% 50%;
    margin-top: 30px;
    margin-bottom: 100px;
}

.rooms {
    background-color: #fff;
    padding: 20px 10px;
    border-radius: 20px;
}

.rooms:hover {
    -webkit-box-shadow: 0px 0px 56px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 56px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 56px 0px rgba(0, 0, 0, 0.75);
}

.room-image-featured {
    max-width: 100%;
}

.room-image-featured img {
    max-width: 100%;
    border-radius: 12px;
}

.price-room {
    position: absolute;
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    left: 20px;
    bottom: 20px;
    color: #222;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    /* line-height: 48.276px; */
    /* 201.152% */
}

.price-room span {
    font-size: 20px;
    margin-left: 5px;
}

.room-tit-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 10px 0px 10px;
    justify-content: space-between;
    margin-top: 5px;
    margin-bottom: 7px;
}

.rating-room {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.title-room {
    color: #222;
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    /* 177.778% */
}

.room-desc-excerpt {
    color: rgba(15, 31, 65, 0.7);
    font-family: Poppins;
    font-size: 14.982px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.635px;
    padding-left: 20px;
    margin-bottom: 5px
        /* 177.778% */
}

.stars i,
.rating-int {
    font-size: 1.2rem;
    color: green;
    margin-left: 5px;
}

.rating-int {
    font-family: Inter;
}

.button-room-book {
    /* background-color: ; */
    background: #0F1F41;
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    /* 177.778% */
    width: 90%;
    padding: 10px 0px;
    border-radius: 20px;
    border: none;
    margin-top: 5px;
    /* justify-self: center; */
}

.buttoncontainer-tocenter {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 768px) {
    .room-grid {
        grid-template-columns: 100%;
    }
}