/** Shopify CDN: Minification failed

Line 231:18 Unexpected "{"
Line 231:27 Expected ":"
Line 243:20 Unexpected "{"
Line 243:29 Expected ":"
Line 253:20 Unexpected "{"
Line 253:29 Expected ":"
Line 261:20 Unexpected "{"
Line 261:29 Expected ":"
Line 266:20 Unexpected "{"
Line 266:29 Expected ":"
... and 46 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:banner-with-logo (INDEX:3) */
.logo-hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    min-height: 550px;
    max-height: 100%;
  }

  .logo-hero-banner__image-sizer {
    display: none;
  }

  .logo-hero-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, var(--overlay-opacity, 0.3));
    z-index: 0;
  }

  .logo-hero-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .logo-hero-banner__bg--desktop {
    display: block;
  }

  .logo-hero-banner__bg--mobile {
    display: none;
  }

  .logo-hero-banner__content {
    text-align: center;
    color: white;
    padding: 60px 40px;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  }

  .logo-hero-banner__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .logo-hero-banner__logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }

  .logo-hero-banner__heading {
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--heading-color, #ffffff) !important;
    text-shadow: var(--text-shadow);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  }

  .logo-hero-banner__subheading {
    font-size: 18px;
    margin-bottom: 40px;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--subheading-color, #ffffff) !important;
    text-shadow: var(--text-shadow);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  }

  .logo-hero-banner__button {
    display: inline-block;
    padding: 16px 48px;
    background-color: var(--button-bg-color, rgba(255, 255, 255, 0.95));
    color: var(--button-text-color, #333);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  }

  .logo-hero-banner__button:hover {
    background-color: var(--button-bg-color-hover, white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  /* Tablet: 768px - 1024px */
  @media (max-width: 1024px) {
    .logo-hero-banner {
      min-height: 450px;
    }

    .logo-hero-banner__content {
      padding: 50px 30px;
    }

    .logo-hero-banner__heading {
      font-size: 44px;
      margin-bottom: 20px;
    }

    .logo-hero-banner__subheading {
      font-size: 16px;
      margin-bottom: 35px;
    }

    .logo-hero-banner__button {
      padding: 14px 40px;
      font-size: 15px;
    }
  }

  /* Mobile: up to 767px */
  @media (max-width: 767px) {
    .logo-hero-banner {
      min-height: 400px;
    }

    .logo-hero-banner__bg--desktop {
      display: none;
    }

    .logo-hero-banner__bg--mobile {
      display: block;
    }

    .logo-hero-banner__content {
      padding: 40px 20px;
    }

    .logo-hero-banner__logos {
      gap: 12px;
      margin-bottom: 25px;
    }

    .logo-hero-banner__heading {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .logo-hero-banner__subheading {
      font-size: 13px;
      margin-bottom: 30px;
      letter-spacing: 1px;
    }

    .logo-hero-banner__button {
      display: inline-block;
      padding: 12px 32px;
      font-size: 14px;
      width: auto;
    }
  }

  /* Small Mobile: up to 480px */
  @media (max-width: 480px) {
    .logo-hero-banner {
      min-height: 350px;
    }

    .logo-hero-banner__content {
      padding: 30px 16px;
    }

    .logo-hero-banner__heading {
      font-size: 22px;
      margin-bottom: 12px;
    }

    .logo-hero-banner__subheading {
      font-size: 12px;
      margin-bottom: 25px;
    }

    .logo-hero-banner__button {
      padding: 10px 28px;
      font-size: 13px;
    }
  }
/* END_SECTION:banner-with-logo */

/* START_SECTION:cards-with-background (INDEX:5) */
#shopify-section-{{ section.id }} .cards-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #shopify-section-{{ section.id }} .cards-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, var(--overlay-opacity, 0.85));
    z-index: 0;
  }

  #shopify-section-{{ section.id }} .cards-section__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  #shopify-section-{{ section.id }} .cards-section__logo {
    height: auto;
    margin: 0 auto 30px;
  }

  #shopify-section-{{ section.id }} .cards-section__logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  #shopify-section-{{ section.id }} .cards-section__heading {
    font-weight: 700;
    color: #006938;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  #shopify-section-{{ section.id }} .cards-section__description {
    font-size: 16px;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.6;
  }

  #shopify-section-{{ section.id }} .cards-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }

  #shopify-section-{{ section.id }} .cards-section__card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  #shopify-section-{{ section.id }} .cards-section__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  #shopify-section-{{ section.id }} .cards-section__card-slider {
    position: relative;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 8px;
  }

  #shopify-section-{{ section.id }} .cards-section__card-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
  }

  #shopify-section-{{ section.id }} .cards-section__card-slider-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #shopify-section-{{ section.id }} .cards-section__card-slider-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 200px;
    object-fit: contain;
  }

  #shopify-section-{{ section.id }} .cards-section__slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  #shopify-section-{{ section.id }} .cards-section__slider-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }

  #shopify-section-{{ section.id }} .cards-section__slider-button.prev {
    left: 10px;
  }

  #shopify-section-{{ section.id }} .cards-section__slider-button.next {
    right: 10px;
  }

  #shopify-section-{{ section.id }} .cards-section__card-heading {
    font-weight: 700;
    margin-bottom: 15px;
  }

  #shopify-section-{{ section.id }} .cards-section__card-text {
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
  }

  #shopify-section-{{ section.id }} .cards-section__card-button {
    display: inline-block;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
  }

  #shopify-section-{{ section.id }} .cards-section__card-button:hover {
    opacity: 0.9;
  }

  #shopify-section-{{ section.id }} .cards-section__footer-button {
    display: inline-block;
    color: white;
    padding: 16px 48px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
  }

  #shopify-section-{{ section.id }} .cards-section__footer-button:hover {
    opacity: 0.9;
  }

  @media (max-width: 768px) {
    #shopify-section-{{ section.id }} .cards-section {
      padding: 60px 20px;
      min-height: auto;
    }

    #shopify-section-{{ section.id }} .cards-section__description {
      font-size: 14px;
      margin-bottom: 30px;
    }

    #shopify-section-{{ section.id }} .cards-section__grid {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 30px;
    }

    #shopify-section-{{ section.id }} .cards-section__card {
      padding: 25px 20px;
    }
  }
/* END_SECTION:cards-with-background */