/** Shopify CDN: Minification failed

Line 18:18 Unexpected "{"
Line 18:27 Expected ":"
Line 26:20 Unexpected "{"
Line 26:29 Expected ":"
Line 34:20 Unexpected "{"
Line 34:29 Expected ":"
Line 40:22 Unexpected "{"
Line 40:31 Expected ":"
Line 45:22 Unexpected "{"
Line 45:31 Expected ":"

**/


/* CSS from section stylesheet blocks */
#shopify-section-{{ section.id }} .heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  #shopify-section-{{ section.id }} .heading > h2 {
    margin-left: -80px;
    font-weight: bold;
    font-size: 42px;
    margin-bottom: 0;
    margin-top: 20px;
  }

  #shopify-section-{{ section.id }} .heading > h1 {
    font-weight: 900;
    font-size: 86px;
  }

  @media screen and (max-width: 600px) {
    #shopify-section-{{ section.id }} .heading > h2 {
      font-size: 36px;
      margin-left: -10px;
    }

    #shopify-section-{{ section.id }} .heading > h1 {
      font-size: 42px;
      margin-right: -20px;
    }
  }


  .feature-cards-container {
    gap: 16px;
    width: 100%;
    height: auto;
    display: flex;
    position: relative;
    align-items: stretch;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    flex-direction: row;
    padding-bottom: 32px;
    justify-content: center;
  }
  .feature-cards-feature-card {
    flex: 1;
    display: flex;
    max-width: 400px;
    align-items: center;
    padding-top: 16px;
    padding-left: 16px;
    padding-right: 16px;
    flex-direction: column;
    padding-bottom: 16px;
    background-color: #f4f4f4;
  }
  .feature-cards-feature-card-icon {
    width: 70px;
    height: 70px;
    overflow: visible;
    object-fit: cover;
    margin-bottom: 32px;
  }
  .feature-cards-feature-card-title {
    font-size: 26px;
    font-style: normal;
    font-family: "Barlow";
    font-weight: 700;
  }
  .feature-cards-feature-card-subtitle {
    color: var(--text-color);
    font-size: 26px;
    font-style: normal;
    font-family: "Barlow";
    font-weight: 700;
  }
  .feature-cards-feature-card-features {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    margin-top: 32px;
    align-items: flex-start;
    flex-direction: column;
  }
  .feature-cards-feature-card-feature-row {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
  }

  .feature-cards-feature-card-feature-row-text {
    line-height: 1.8;
    margin-left: 8px;
  }


  @media(max-width: 1400px) {
    .feature-cards-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .feature-cards-feature-card {
      max-width: none;
    }
  }
  @media(max-width: 479px) {
    .feature-cards-container {
      grid-template-columns: 1fr;
    }
  }