/** Shopify CDN: Minification failed

Line 19:20 Unexpected "{"
Line 19:29 Expected ":"
Line 19:36 Unexpected "{"

**/


/* CSS from section stylesheet tags */
/* Hide the banner on screens 750px wide and above (desktop/tablet) */
  @media screen and (min-width: 750px) {
    .custom-mobile-banner-section {
      display: none !important;
    }
  }

  /* Basic styling for the banner section */
  .shopify-section-{{ section.id }} {
    position: relative;
    overflow: hidden;
  }

  /* Styles for the image containers */
  .banner__image-container {
    display: block;
    width: 100%;
    min-height: 300px; /* Still a fallback minimum height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Adding a background color for easier debugging if image is missing */
    background-color: #e0e0e0; /* A light grey to indicate the div is present */
  }

  .banner__image-container--first {
    position: relative;
    z-index: 0;
  }

  .banner__image-container--second {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  /* Styles for the text box within the banner */
  .banner__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    color: var(--color-foreground);
    /* Adding a semi-transparent background to text box for visibility */
    background-color: rgba(255, 255, 255, 0.7); /* White with 70% opacity */
  }

  .banner__content--top-left { justify-content: flex-start; align-items: flex-start; text-align: left; }
  .banner__content--top-center { justify-content: flex-start; align-items: center; text-align: center; }
  .banner__content--top-right { justify-content: flex-start; align-items: flex-end; text-align: right; }
  .banner__content--middle-left { justify-content: center; align-items: flex-start; text-align: left; }
  .banner__content--middle-center { justify-content: center; align-items: center; text-align: center; }
  .banner__content--middle-right { justify-content: center; align-items: flex-end; text-align: right; }
  .banner__content--bottom-left { justify-content: flex-end; align-items: flex-start; text-align: left; }
  .banner__content--bottom-center { justify-content: flex-end; align-items: center; text-align: center; }
  .banner__content--bottom-right { justify-content: flex-end; align-items: flex-end; text-align: right; }

  .banner__heading {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }

  .banner__subheading {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }

  .banner__content .button {
    margin-top: 1rem;
  }