/**  features hotel**/
.hotel-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hotel-features div.btn-default {
    padding: 0;
}

.hotel-features div.btn-default {
    text-decoration: none;
    background-color: #a7b2a0;
    font-weight: 500;
    padding: 1.5rem 30px !important;
    text-align: center;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-features .btn-default p {
    margin: 0;
}

.hotel-features div.btn-default a {
    text-decoration: none;
    color: #f9f7f2;
}

.hotel-features div.btn-default:hover a {
    text-decoration: none;
    color: white;
}

.hotel-features .btn-default a:hover {
    text-decoration: none;
    color: white;
    opacity: 1;
}

.hotel-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    transition: all 0.3s ease-in-out;

}

.hotel-features-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 30px;
    text-align: center;
    min-height: 50vh;

    @media (min-width: 992px) {
        min-height: 85vh;
    }
}

.hotel-features-item h2,
.hotel-features-item h3 {
    text-align: center;
    color: #b48c64;
    font-family: "Lato", sans-serif;

}

.hotel-features-item:not(.hotel-features-img) {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-color: #f9f7f2;

}

.hotel-features-item:not(.hotel-features-img)::before {
    content: '';
    display: block;
    background-color: white;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: 1;
}


.hotel-features-img {
    display: none;
    transition: all 0.3s ease-in-out;
}

.hotel-features-grid .hotel-description-img {
    border: 0;
}

@media (min-width: 992px) {

    .hotel-features {
        gap: 0
    }

    .hotel-features-grid:nth-child(even) .hotel-features-item.hotel-features-item:not(.hotel-features-img) {
        order: 2;
        padding: 3rem 10%;

    }

    .hotel-features-item:not(.hotel-features-img)::before {
        display: none;
    }

    .hotel-features-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 3rem 10%;
    }

    .hotel-features .btn-default {
        width: fit-content;
        height: fit-content;
        display: block;
        max-width: none;

    }

    .hotel-features-grid:hover .btn-default {
        text-decoration: none;
        color: white;
        opacity: 1;
        background-color: #abb98e;
    }

    .hotel-features-item:not(.hotel-features-img) {
        background-image: none;
    }

    .hotel-features-grid:hover .hotel-features-item:not(.hotel-features-img) {
        background-image: none;
        background-color: #f9f7f2;
    }

    .hotel-features-img {
        display: block;
    }

    .hotel-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hotel-features-img {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 65vh;
}

@media (min-width: 1800px) {
    .hotel-features-img {
        min-height: 85vh;
    }
}


.hotel-features-grid:nth-child(even) .hotel-features-item.hotel-features-item:not(.hotel-features-img) {
    order: 2;

}



.hotel-features-item a {
    z-index: 2;
    text-decoration: none;
}