/** Shopify CDN: Minification failed

Line 138:2 Unexpected "#"
Line 138:4 Unexpected "{"
Line 138:16 Expected ":"
Line 138:20 Unexpected "{"
Line 145:2 Unexpected "#"
Line 145:4 Unexpected "{"
Line 145:16 Expected ":"
Line 156:2 Unexpected "#"
Line 156:4 Unexpected "{"
Line 156:16 Expected ":"
... and 114 more hidden warnings

**/
.process-steps__wrapper .steps {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;

  display: flex;
  align-items: center;
}

.process-steps__wrapper .step {
  flex: 0 0 auto;
}

.process-steps__wrapper .step-circle {
  width: 74px;
  height: 74px;

  border-radius: 50%;
  background: #d97932;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-family: Arial, sans-serif;
}

.process-steps__wrapper .step-label {
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 4px;
}

.process-steps__wrapper .step-number {
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.process-steps__wrapper .step-connector {
  position: relative;
  flex: 1;
  height: 3px;
  background: #d97932;
  margin: 0 0;
}

.process-steps__wrapper .arrow {
  position: absolute;
  right: -1px;
  top: 50%;

  width: 11px;
  height: 11px;

  border-top: 3px solid #d97932;
  border-right: 3px solid #d97932;

  transform: translateY(-50%) rotate(45deg);
}

.process-steps__wrapper .step:not(:first-child){
  margin: 0 0 0 5rem;
}

/* Tablet */
@media (max-width: 768px) {
  .process-steps__wrapper .steps {
    padding: 20px;
  }

  .process-steps__wrapper .step-circle {
    width: 64px;
    height: 64px;
  }

  .process-steps__wrapper .step-number {
    font-size: 24px;
  }

  .process-steps__wrapper .step-label {
    font-size: 8px;
  }

  .process-steps__wrapper .step:not(:first-child) {
    margin: 0 0 0 2rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .process-steps__wrapper .steps {
    padding: 15px;
  }

  .process-steps__wrapper .step-circle {
    width: 52px;
    height: 52px;
  }

  .process-steps__wrapper .step-number {
    font-size: 19px;
  }

  .process-steps__wrapper .step-label {
    font-size: 7px;
  }

  .process-steps__wrapper .step-connector {
    margin: 0;
  }
}


  /* =========================================================
     ROOT
  ========================================================= */

  #{{ section_id }} {
    width: 100%;
    background: var(--ps-background);
    overflow: hidden;
  }


  #{{ section_id }} .process-steps__wrapper {
    max-width: 90rem;

    margin: 0 auto;
  }


  /* =========================================================
     HEADING
  ========================================================= */

  #{{ section_id }} .process-steps__heading {
    margin: 0 0 2rem 0;
    padding: 0;
    text-align: center;
    color: var(--ps-heading-color);
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 800;
  }


  #{{ section_id }} .process-steps__heading p {
    margin: 0;
  }


  #{{ section_id }} .process-steps__heading strong {
    color: var(--ps-accent);
    font-weight: 800;
  }


  /* =========================================================
     GRID
  ========================================================= */

  #{{ section_id }} .process-steps__grid {
    display: grid;

    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    column-gap: 24px;

    margin-top: 60px;
  }


  /* =========================================================
     STEP
  ========================================================= */

  #{{ section_id }} .process-step {
    position: relative;
    min-width: 0;
  }


  /* =========================================================
     INDICATOR
  ========================================================= */

  #{{ section_id }} .process-step__indicator {
    position: relative;

    height: 100px;

    display: flex;
    align-items: flex-start;
  }


  /* =========================================================
     CIRCLE
  ========================================================= */

  #{{ section_id }} .process-step__circle {
    position: relative;
    z-index: 3;

    width: 74px;
    height: 74px;

    flex: 0 0 74px;

    border-radius: 50%;

    background: var(--ps-accent);

    color: #ffffff;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
  }


  #{{ section_id }} .process-step__badge {
    display: block;

    margin-bottom: 3px;

    font-size: 9px;
    line-height: 1;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .3px;
  }


  #{{ section_id }} .process-step__number {
    display: block;

    font-size: 28px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;
  }


  /* =========================================================
     ARROW
  ========================================================= */

  #{{ section_id }} .process-step__arrow {
    position: absolute;

    top: 36px;

    left: 74px;

    right: -24px;

    height: 3px;

    background: var(--ps-accent);

    z-index: 1;
  }


  #{{ section_id }} .process-step__arrow span {
    position: absolute;

    right: 0;

    top: 50%;

    width: 12px;
    height: 12px;

    border-top: 3px solid var(--ps-accent);
    border-right: 3px solid var(--ps-accent);

    transform:
      translateY(-50%)
      rotate(45deg);
  }


  /* =========================================================
     IMAGE
  ========================================================= */

  #{{ section_id }} .process-step__image-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 1.48 / 1;

    overflow: hidden;

    border-radius: var(--ps-radius);

    background: #eeeeee;
  }


  #{{ section_id }} .process-step__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
      transform .45s ease;
  }


  #{{ section_id }} .process-step:hover
  .process-step__image {
    transform: scale(1.025);
  }


  #{{ section_id }} .process-step__placeholder {
    width: 100%;
    height: 100%;
  }


  /* =========================================================
     CONTENT
  ========================================================= */

  #{{ section_id }} .process-step__content {
    padding-top: 27px;
  }


  #{{ section_id }} .process-step__title {
    margin: 0;

    color: var(--ps-title-color);

    font-size: 28px;
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.6px;
  }


  /* =========================================================
     DIVIDER
  ========================================================= */

  #{{ section_id }} .process-step__divider {
    width: 100%;

    height: 2px;

    margin-top: 20px;
    margin-bottom: 22px;

    background: var(--ps-line-color);
  }


  /* =========================================================
     DESCRIPTION
  ========================================================= */

  #{{ section_id }} .process-step__description {
    color: var(--ps-text-color);

    font-size: 18px;

    line-height: 1.55;

    font-weight: 400;
  }


  #{{ section_id }} .process-step__description p {
    margin: 0;
  }


  /* =========================================================
     TABLET
  ========================================================= */

  @media screen and (max-width: 989px) {

    #{{ section_id }} .process-steps__wrapper {
      max-width: 80rem;
      width: 100%;
    }


    #{{ section_id }} .process-steps__grid {
      column-gap: 18px;
    }


    #{{ section_id }} .process-step__arrow {
      right: -18px;
    }


    #{{ section_id }} .process-step__title {
      font-size: 23px;
    }


    #{{ section_id }} .process-step__description {
      font-size: 16px;
    }

  }


  /* =========================================================
     MOBILE
  ========================================================= */

  @media screen and (max-width: 749px) {

    #{{ section_id }} .process-steps__wrapper {
      max-width: 60rem;
      width: 100%;
    }


    #{{ section_id }} .process-steps__heading {
      font-size: 36px;

      letter-spacing: -1px;
    }


    #{{ section_id }} .process-steps__grid {
      display: flex;

      flex-direction: column;

      gap: 45px;

      margin-top: 40px;
    }


    #{{ section_id }} .process-step__indicator {
      height: 80px;
    }


    #{{ section_id }} .process-step__circle {
      width: 64px;
      height: 64px;

      flex-basis: 64px;
    }


    #{{ section_id }} .process-step__number {
      font-size: 24px;
    }


    #{{ section_id }} .process-step__arrow {
      display: block;

      top: 64px;

      left: 31px;
      right: auto;

      width: 2px;
      height: 35px;

      background: var(--ps-accent);
    }


    #{{ section_id }} .process-step__arrow span {
      display: none;
    }


    #{{ section_id }} .process-step:last-child
    .process-step__arrow {
      display: none;
    }


    #{{ section_id }} .process-step__image-wrapper {
      aspect-ratio: 1.45 / 1;
    }


    #{{ section_id }} .process-step__content {
      padding-top: 20px;
    }


    #{{ section_id }} .process-step__title {
      font-size: 24px;
    }


    #{{ section_id }} .process-step__divider {
      margin-top: 16px;
      margin-bottom: 18px;
    }


    #{{ section_id }} .process-step__description {
      font-size: 16px;
    }

  }