/** Shopify CDN: Minification failed

Line 21:11 Unexpected "{"
Line 21:20 Expected ":"
Line 21:27 Unexpected "{"
Line 31:13 Unexpected "{"
Line 31:22 Expected ":"
Line 37:13 Unexpected "{"
Line 37:22 Expected ":"
Line 38:13 Unexpected "{"
Line 38:22 Expected ":"
Line 44:13 Unexpected "{"
... and 68 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:frosted-glass-section (INDEX:25, SCOPED:FALSE) */
#section--{{ section.id }} {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    overflow: hidden;
  }

  #section--{{ section.id }} .background-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  #section--{{ section.id }} .background-media img,
  #section--{{ section.id }} .background-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #section--{{ section.id }} .frosted-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, {{ section.settings.glass_opacity | divided_by: 100.0 }});
    backdrop-filter: blur({{ section.settings.blur_amount | default: 15 }}px);
    -webkit-backdrop-filter: blur({{ section.settings.blur_amount | default: 15 }}px);
    border-radius: 20px;
    padding: 5rem 4rem;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  #section--{{ section.id }} .content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  #section--{{ section.id }} .block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
  }

  #section--{{ section.id }} .block-video > * {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    display: block;
  }

  @media (max-width: 750px) {
    #section--{{ section.id }} .frosted-card {
      padding: 3rem 2rem;
    }
  }
/* END_SECTION:frosted-glass-section */

/* START_SECTION:image-with-caption (INDEX:28, SCOPED:FALSE) */
.gallery-section-{{ section.id }} {
    padding: 6rem 0;
  }

  .gallery-section-{{ section.id }} .section-title {
    text-align: {{ section.settings.title_alignment }};
    margin-bottom: 4rem;
    font-family: var(--font-{{ section.settings.title_font_family }}-family);
    font-size: {{ section.settings.title_font_size }}px;
    line-height: 1.2;
    color: {{ section.settings.title_color }};
  }

  .gallery-section-{{ section.id }} .gallery-grid {
    display: grid;
    grid-template-columns: repeat({{ section.settings.columns_desktop }}, 1fr);
    gap: {{ section.settings.grid_gap }}px;
  }

  .gallery-section-{{ section.id }} .gallery-item {
    display: flex;
    flex-direction: column;
  }

  .gallery-section-{{ section.id }} .gallery-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: {{ section.settings.image_border_radius }}px;
  }

  .gallery-section-{{ section.id }} .gallery-image {
    width: 100%;
    height: {{ section.settings.image_height }}px;
    object-fit: cover;
    display: block;
  }

  .gallery-section-{{ section.id }} .gallery-caption {
    padding-top: 1.5rem;
  }

  .gallery-section-{{ section.id }} .gallery-caption .rte {
    font-size: 16px;
    line-height: 1.5;
    color: inherit;
  }

  @media (max-width: 990px) {
    .gallery-section-{{ section.id }} .gallery-grid {
      grid-template-columns: repeat({{ section.settings.columns_tablet }}, 1fr);
    }
  }

  @media (max-width: 750px) {
    .gallery-section-{{ section.id }} .gallery-grid {
      grid-template-columns: repeat({{ section.settings.columns_mobile }}, 1fr);
      gap: {{ section.settings.grid_gap | divided_by: 1.5 }}px;
    }

    .gallery-section-{{ section.id }} .section-title {
      font-size: {{ section.settings.title_font_size | minus: 10 }}px;
    }

    .gallery-section-{{ section.id }} .gallery-image {
      height: {{ section.settings.image_height | times: 0.8 }}px;
    }
  }
/* END_SECTION:image-with-caption */