.accommodation-banner {
    position: relative;
}

.accommodation-banner .banner-img {
    width: 100%;
    height: auto;
}

/* LEFT TEXT */
.accommodation-banner .banner-text-left {
    position: absolute;
    top: 95%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
    max-width: 50%;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

/* RIGHT TEXT */
.accommodation-banner .banner-text-right {
    position: absolute;
    top: 95%;
    right: 5%;
    transform: translateY(-50%);
    color: white;
    font-size: 14px;
    max-width: 50%;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    text-align: right;
}

/* Center heading */
.accommodation-banner .banner-heading {
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

@media (max-width: 968px) {

    .accommodation-banner .banner-text-left,
    .accommodation-banner .banner-text-right {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 10px;
        color: black;
        text-shadow: none;


    }
}