[id^="home-page-hero-banner-block"] {

    .swiper-wrapper {
        height: fit-content;
    }
    
    /* Copying styles from old version of home page banner */

    .home-page-hero-banner__slide {
        height: 90vh;
    }

    .home-page-hero-banner__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .home-page-hero-banner__text-container {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        pointer-events: none;
        padding: 50px 15px;
    }


    .home-page-hero-banner__banner-text {
        text-align: center;
        font-size: 110px;
        font-weight: bold;
        line-height: normal;
          text-shadow: #4f4f4f 0 1px 0;
          width: 100%;
    }

    @media (max-width:991px) {
        .home-page-hero-banner__banner-text {
            font-size: 15vw;
        }
    }
}

/* Need to add this padding to the top of the absolutely postioned box so that it accounts for nav space on mobile? */
/* @media screen and (max-width: 991px) {
  .home .homepage-banner-container {
    padding-top: 150px;
  }
} */