/** Shopify CDN: Minification failed

Line 171:20 Unexpected "{"
Line 171:29 Expected ":"
Line 178:20 Unexpected "{"
Line 178:29 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:stat-with-image (INDEX:66) */
.stat-with-image-wrapper {
    padding-inline-start: var(--container-gutter);
    padding-inline-end: var(--container-gutter);
  }

  .stat-with-image-wrapper.section-spacing {
    --section-vertical-spacing-override: 30px;
    --section-vertical-spacing-block-start-compensation: 0px;
  }

  @media screen and (min-width: 1024px) {
    .stat-with-image-wrapper {
      padding-inline-start: 30px;
      padding-inline-end: 30px;
    }
  }

  .stat-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 30px;
    min-height: 600px;
  }

  .stat-with-image__media {
    height: 100%;
    width: 100%;
    border: 1px solid #000000;
    border-radius: 20px;
    overflow: hidden;
  }

  .stat-with-image__media picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .stat-with-image__img,
  .stat-with-image__media .placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .stat-with-image__content {
    background-color: var(--stat-content-bg, #F5F3EE);
    border: 1px solid #000000;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 50px;
    gap: 24px;
  }

  .stat-with-image__eyebrow {
    font-family: var(--heading-font-family);
    font-size: var(--eyebrow-size-desktop, 1.1rem);
    max-width: none;
    white-space: nowrap;
  }

  @media screen and (max-width: 700px) {
    .stat-with-image__eyebrow {
      font-size: var(--eyebrow-size-mobile, var(--eyebrow-size-desktop, 1.1rem));
    }
  }

  .stat-with-image__rotator {
    display: block;
    width: 100%;
    max-width: 480px;
  }

  .stat-with-image__slides {
    position: relative;
    min-height: 220px;
  }

  .stat-with-image__slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  }

  .stat-with-image__slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
  }

  .stat-with-image__number {
    font-family: var(--heading-font-family);
    font-size: 4rem;
    line-height: 1;
    margin: 0;
  }

  .stat-with-image__label {
    font-family: var(--heading-font-family);
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0;
    max-width: 480px;
  }

  .stat-with-image__quote {
    font-size: 1.1rem;
    max-width: 420px;
    margin: 8px 0 0;
  }

  .stat-with-image__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  button.stat-with-image__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: #000000;
    opacity: 0.2;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }

  .stat-with-image__dot:hover {
    opacity: 0.6;
  }

  .stat-with-image__dot.is-active {
    opacity: 1;
  }

  .stat-with-image__button {
    border-radius: 999px;
  }

  #shopify-section-{{ section.id }} .stat-with-image__button {
    background-color: var(--dark) !important;
    color: var(--light) !important;
    border: 1px solid var(--dark) !important;
    transition: background-color .3s cubic-bezier(.785, .135, .15, .86), color .3s cubic-bezier(.785, .135, .15, .86), border-color .3s cubic-bezier(.785, .135, .15, .86) !important;
  }

  #shopify-section-{{ section.id }} .stat-with-image__button:hover {
    background-color: transparent !important;
    color: var(--dark) !important;
    border-color: var(--dark) !important;
  }

  .stat-with-image__disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 360px;
  }

  @media screen and (max-width: 1024px) {
    .stat-with-image__content {
      padding: 50px 40px;
    }

    .stat-with-image__number {
      font-size: 3.25rem;
    }

    .stat-with-image__label {
      font-size: 1.6rem;
    }
  }

  @media screen and (max-width: 700px) {
    .stat-with-image {
      grid-template-columns: 1fr;
      min-height: 0;
    }

    .stat-with-image__media {
      height: 320px;
      border-radius: 20px;
    }

    .stat-with-image__content {
      border-radius: 20px;
      padding: 40px 24px;
    }

    .stat-with-image__slides {
      min-height: 200px;
    }

    .stat-with-image__number {
      font-size: 2.75rem;
    }

    .stat-with-image__label {
      font-size: 1.4rem;
    }
  }

  @media screen and (max-width: 480px) {
    .stat-with-image__content {
      padding: 32px 18px;
      gap: 18px;
    }

    .stat-with-image__number {
      font-size: 2.25rem;
    }

    .stat-with-image__label {
      font-size: 1.2rem;
    }

    .stat-with-image__quote {
      font-size: 1rem;
    }
  }
/* END_SECTION:stat-with-image */