/* BANNER */
.banner {
    position: relative;
    z-index: 1;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 7%;
    width: 100%;
}

.px-0 {
    padding-left: 0;
    padding-right: 0;
}

.banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: -1;
    background-color: #1c1c1c;
}

.banner.no-filter:before {
    background-color: #1c1c1c4b;
}

.banner .title {
    font-family: 'Almarai', sans-serif;
    font-size: 50px;
    text-align: center;
}

.banner .title.empty {
    height: 57px; /* Añadido por mi: Para reemplazar la falta de texto*/
}

.banner-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 100%;
}

/* TEXTO BANNER */
.banner-text {
    width: 50%;
    padding: 30px;
    letter-spacing: 2px;
}

.banner-text .head {
    font-size: 18px;
    padding-bottom: 10%;
}

.banner-text .lead {
    font-size: 36px;
    font-family: 'Almarai', sans-serif;
    margin-bottom: 15%;
}

/* IMAGEN HABITACIÓN BANNER */
.banner-container img {
    width: 50%;
}

/* MEDIA QUERY */
@media screen and (min-width: 320px) and (max-width: 1079px) {
    .banner {
        width: 100%;
        height: auto;
    }

    .banner-text {
        width: 100%;
        z-index: 2;
        margin: 9% 0;
        padding-bottom: 0;
        margin-bottom: 20px;
    }

    .banner-text p {
        padding-bottom: 10%;
    }

    .banner-container img {
        width: 100%;
        padding: 4%;
        z-index: 4;
    }
}

@media screen and (max-width: 525px) {
    .banner .title.empty {
        height: 114px; /* Añadido por mi: Para reemplazar la falta de texto*/
    }
}
