/* BANNER */
.banner {
    position: relative;
    z-index: 1;
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 7%;
    width: 100%;
}

.banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: -1;
    background-color: #1c1c1c;
}

.banner .title {
    font-family: 'Gilda Display', Times, serif;
    font-size: 50px;
    text-align: center;
}

.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: 'Gilda Display', Times, 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;
    }
}
