.unic_details_hotel_top::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.33);
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: 0;
    z-index: 0;
}
.top_hotels_button {
    height: max-content;
    padding: 2px 7px;
    border-radius: 22px;
    background-color: #8787879c;
    position: absolute;
    bottom: 15px;
    left: 10px;
    font-weight: 400;
    font-size: 0.90rem;
    color: #fff;
    z-index: 3;
}
.top_hotels_name {
    height: max-content;
    padding: 2px 7px;
    border-radius: 22px;
    /* background-color: #8787879c; */
    position: absolute;
    bottom: 52px;
    left: 11px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    width: 190px;
    z-index: 2;
    line-height: 18px;
}
.unic_details_hotel_top.id_hotel_2 {
    grid-row: span 2;
}
.unic_details_hotel_top.id_hotel_1 {
    grid-column: span 2;
}
.unic_details_hotel_top {
    height: inherit;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.top_hotels_img {
    height: 100%;
    width: inherit;
    object-fit: cover;
}
.container-top-details-hotels {
    display: grid;
    grid-template-columns: 200px 200px 250px 300px;
    grid-auto-rows: 200px;
    gap: 15px;
    place-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-out;
}
@media (max-width: 1024px) {
    .container-top-details-hotels{
        grid-template-columns: 175px 175px 175px 175px;
    }
    .unic_details_hotel_top.id_hotel_1 {
        grid-column: span 1;
    }
    .unic_details_hotel_top.id_hotel_2 {
        grid-row: span 1;
    }
    .top_hotels_name {
        width: 170px;
    }
}
@media (max-width: 768px) {
    .container-top-details-hotels {
        grid-template-columns: 280px 280px;
    }
}
@media (max-width: 640px) {
    .container-top-details-hotels {
        grid-template-columns: 320px;
    }
}