/** Shopify CDN: Minification failed

Line 56:19 Expected identifier but found whitespace
Line 56:21 Unexpected "{"
Line 56:30 Expected ":"
Line 57:10 Expected identifier but found whitespace
Line 57:12 Unexpected "{"
Line 57:21 Expected ":"
Line 57:46 Expected ":"
Line 61:12 Expected identifier but found whitespace
Line 61:14 Unexpected "{"
Line 61:23 Expected ":"
... and 1 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:intro-image (INDEX:30) */
/* ----------------------------------------- */
/* VISIBILITY (Show/Hide Entire Section)     */
/* ----------------------------------------- */

.visibility-desktop {
  display: block;
}

.visibility-mobile {
  display: none;
}

.visibility-both {
  display: block;
}

@media (max-width: 749px) {
  .visibility-desktop {
    display: none !important;
  }
  .visibility-mobile {
    display: block !important;
  }
}

/* ----------------------------------------- */
/* ORIGINAL STYLES                           */
/* ----------------------------------------- */

.intro-image-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: {{ section.settings.background_color }};
  padding: {{ section.settings.padding_y }}rem 1rem;
}

.intro-image {
  max-width: {{ section.settings.max_width }}px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 749px) {
  .intro-image-section {
    padding: 0.5rem 0.1rem;
  }
}
/* END_SECTION:intro-image */