/** hero description **/
.hotel-description {
    min-height: 70vh;
    padding-bottom: 15rem;
}

.hotel-description-grid {
    display: grid;
    gap: 6rem;
}

@media (min-width: 992px) {
    .hotel-description-grid {
        grid-template-columns: 1.3fr 2fr;
        gap: 6rem;
    }
}

.hotel-description-img {
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    height: 300px;
    background-position: center center;
    position: relative;

    & img {
        width: 100%;
    }
}

.hotel-sostenibility-img {
    background-size: contain;
}

.hotel-description-img .minor-image {
    display: none;
}

@media (min-width: 992px) {
    .hotel-description-img {
        height: 100%;
    }

    .hotel-sostenibility-img {
        height: 100%;
    }

    .hotel-description-img .minor-image {
        display: block;
        position: absolute;
        bottom: -16rem;
        right: -3rem;
        width: 350px;
        height: 220px;
        object-fit: cover;
    }

    .hotel-description-item h2 {
        margin-bottom: 7rem !important;
    }
}

.hotel-description-item {
    display: flex;
    flex-direction: column;
    justify-content: center;


}

.hotel-title-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    @media (width>=768px) {
        justify-content: flex-start;

    }
}

.hotel-stars {
    display: flex;
    align-items: center;
    margin-top: -99px;
    margin-left: 5px;
    padding-left: 0.5rem;

    & .cls-1 {
        fill: #a7b2a0;
    }
}

.hotel-stars svg {
    width: 2.8rem;
    height: 2.8rem;
    padding: 2px;
}


@media (max-width: 991px) {
    .hotel-stars svg {
        width: 2rem;
        height: 2rem;
    }

    .hotel-stars {
        display: flex;
        align-items: center;
        margin-top: -80px;
        margin-left: 3px;
        padding-left: 0.5rem;
    }
}