/** Shopify CDN: Minification failed

Line 41:4 Unexpected "{"
Line 41:5 Expected identifier but found "%"
Line 45:4 Unexpected "{"
Line 45:5 Expected identifier but found "%"

**/


  .section-border-top {
    border-top: 1.5px dashed #D9D3C3; /* Customize border style */
  }

  .section-border-bottom {
    border-bottom: 1.5px dashed #D9D3C3; 
  }

  .flexible-image-banner__image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 250px; 
  }

  .flexible-image-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    font-family: 'object-fit: cover;'; /* Polyfill for older browsers */
  }


  @media screen and (max-width: 749px) {
    .flexible-image-banner__image-desktop {
      display: none;
    }
    .flexible-image-banner__image-mobile {
      display: block;
    }
    {% if section.settings.image_height == 'full_screen' %}
        .flexible-image-banner__image-wrapper {
            height: 50vh; 
        }
    {% endif %}
  }

  /* Hide mobile image on desktop */
  @media screen and (min-width: 750px) {
    .flexible-image-banner__image-desktop {
      display: block;
    }
    .flexible-image-banner__image-mobile {
      display: none;
    }
  }
