/** Shopify CDN: Minification failed

Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 31:18 Unexpected "{"
Line 31:27 Expected ":"
Line 39:18 Unexpected "{"
Line 39:27 Expected ":"
Line 46:18 Unexpected "{"
Line 46:27 Expected ":"
Line 49:12 Expected identifier but found whitespace
Line 49:14 Unexpected "{"
... and 31 more hidden warnings

**/


/* CSS from section stylesheet tags */
#shopify-section-{{ section.id }} .about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  overflow: hidden;
}

#shopify-section-{{ section.id }} .about-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

#shopify-section-{{ section.id }} .about-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, {{ section.settings.bg_overlay_opacity | divided_by: 100.0 }});
}

#shopify-section-{{ section.id }} .about-hero__inner {
  position: relative;
  z-index: 2;
  max-width: {{ section.settings.card_max_width }}px;
  width: 100%;
}

#shopify-section-{{ section.id }} .about-hero__card {
  margin: 0 auto;
  padding: 40px 32px 32px;
  border-radius: 32px;
  background: rgba(255, 255, 255, {{ section.settings.card_opacity | divided_by: 100.0 }});
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(16px);
  text-align: center;
}

@media (min-width: 768px) {
  #shopify-section-{{ section.id }} .about-hero__card {
    padding: 56px 64px 40px;
    border-radius: 40px;
  }
}

#shopify-section-{{ section.id }} .about-hero__heading {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: .02em;
  color: {{ section.settings.heading_color }};
}

/* alleen 'Us' in #87AFC1 */
#shopify-section-{{ section.id }} .about-hero__heading span.about-hero__highlight {
  color: #87AFC1;
}

@media (min-width: 768px) {
  #shopify-section-{{ section.id }} .about-hero__heading {
    font-size: 40px;
  }
}

#shopify-section-{{ section.id }} .about-hero__text {
  margin: 0 0 24px;
  color: {{ section.settings.text_color }};
  opacity: .9;
}

#shopify-section-{{ section.id }} .about-hero__text p {
  margin-bottom: 8px;
}

#shopify-section-{{ section.id }} .about-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  background-color: {{ section.settings.button_bg }};
  /* alleen tekstkleur aangepast */
  color: #87AFC1;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

#shopify-section-{{ section.id }} .about-hero__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.25);
}

#shopify-section-{{ section.id }} .about-hero__btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}