/** Shopify CDN: Minification failed

Line 22:21 Expected identifier but found whitespace
Line 22:23 Unexpected "{"
Line 22:32 Expected ":"
Line 23:16 Expected identifier but found whitespace
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 23:53 Expected ":"
Line 24:19 Expected identifier but found whitespace
Line 24:21 Unexpected "{"
Line 24:30 Expected ":"
... and 15 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:usp-icons (INDEX:84) */
.usp-icons {
    background-color: {{ section.settings.background_color }};
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
  }

  .usp-icons__inner {
    max-width: {{ section.settings.max_width }}px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .usp-icons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: {{ section.settings.column_gap }}px;
    align-items: stretch;
  }

  .usp-icons__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 0 16px;
  }

  .usp-icons__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin-bottom: 14px;
  }

  .usp-icons__image {
    object-fit: contain;
    width: auto;
    display: block;
    max-height: 80px;
    height: var(--usp-logo-height);
  }

  .usp-icons__title {
    color: {{ section.settings.title_color }};
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 8px;
    line-height: 1.4;
    max-width: 220px;
  }

  .usp-icons__desc {
    color: {{ section.settings.text_color }};
    font-size: 13px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 280px;
  }

  .usp-icons__link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  @media screen and (max-width: 749px) {
    .usp-icons__grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .usp-icons__inner {
      padding: 0 20px;
    }
  }
/* END_SECTION:usp-icons */