.hotel-list-banner-area {
    background-size: cover;
    padding: 130px 0 50px;
}

    .hotel-list-banner-area::before {
        content: '';
        height: 100%;
        width: 100%;
        background-color: hsla(0, 0%, 0%, 0.86);
        position: absolute;
        top: 0;
        left: 0;
    }

/* hotel-listing-search-list */
.hotel-listing-search-list {
    border: 1px solid #6C6C6C;
    display: grid;
    grid-template-columns: 20% 20% 15% 15% 30%;
    background-color: var(--white-color);
    width: 100%;
}

.hotel-listing-search-item {
    padding: 10px;
    border-right: 1px solid #6C6C6C;
}

    .hotel-listing-search-item:nth-last-child(2) {
        border-right: none;
    }

.hotel-listing-search-list .search-input,
.travellers-text {
    font-size: 20px;
}

.hotel-listing-search-list .class-selection {
    top: 88px;
}



.hl-search-result {
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.hl-search-result-title h4 {
    font-size: 24px;
    font-weight: 600;
}

.hl-search-resultbox {
    display: flex;
    justify-content: space-between;
}

.hl-search-result-list {
    padding-top: 15px;
    margin-top: 25px;
    border-top: 1px solid var(--primary-color);
}

    .hl-search-result-list ul {
        display: flex;
        justify-content: space-between;
        gap: 5px;
        flex-wrap: wrap;
    }

        .hl-search-result-list ul span {
            font-size: 14px;
        }


.hotel-listing-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.hotel-listing-item {
    border: 1px solid var(--color-extra-three);
    border-radius: 15px;
    overflow: hidden;
}

.hotel-listing-item-image img {
    width: 100%;
    max-height: 300px;
    height: auto;
}

.hotel-listing-item-content {
    padding: 15px;
}

.hotel-listing-item-content-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hotel-listing-content-title h4 {
    font-size: 20px;
    font-weight: 600;
}

.hotel-listing-item-content-desc {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px dashed rgb(203 203 203 / 26%);
}

.hotel-listing-content-title {
    width: 100%;
}

.hotel-listing-content-price {
    width: 100%;
}

.hotel-listing-item-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

    .hotel-listing-item-bottom ul {
        display: flex;
        align-content: center;
        gap: 0 5px;
        flex-wrap: wrap;
        width: 50%;
    }

        .hotel-listing-item-bottom ul li span {
            font-size: 13px;
            font-weight: 600;
            line-height: normal;
        }

    .hotel-listing-item-bottom .book-now-button {
        background-color: var(--black-color);
        padding: 10px 20px;
        display: inline-block;
        border-radius: 10px;
        font-weight: 600;
        color: var(--white-color);
    }


.hoteltems {
    border: 1px solid var(--color-extra-three);
    border-radius: 15px;
    padding: 25px;
}

    .hoteltems ul {
        padding-left: 20px;
    }

        .hoteltems ul li {
            list-style-type: disc;
            font-size: 14px;
        }


.hotel-room-similar-list {
    margin: 50px 0;
}

.hotel-room-similar-item {
    border: 1px solid var(--color-extra-three);
    border-radius: 10px;
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 40% 30% 20%;
    grid-gap: 15px;
    align-items: center;
    padding: 10px;
}

.hotel-room-similar-book {
    text-align: end;
}

    .hotel-room-similar-book .hotel-room-book {
        background-color: var(--black-color);
        padding: 10px 20px;
        display: inline-block;
        border-radius: 10px;
        font-weight: 600;
        color: var(--white-color);
    }

.hotel-gallery-wapper {
    border: 1px solid var(--color-extra-three);
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px;
}

.hotel-gallery-image {
    height: 100%;
    width: 100%;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    max-height: 200px;
}

    .hotel-gallery-image img {
        height: 100%;
        width: 100%;
    }

.hotel-gallery-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.hotel-gallery-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}




@media only screen and (max-width: 991px) {
    .hoteltems {
        margin-bottom: 50px;
    }
}

@media only screen and (max-width: 620px) {
    .hotel-gallery-box {
        grid-template-columns: repeat(1, 1fr);
    }

    .hotel-room-similar-item {
        grid-template-columns: repeat(1, 1fr);
    }

    .hotel-room-similar-book {
        text-align: start;
    }
}
