/** Shopify CDN: Minification failed

Line 16:10 Unexpected "{"
Line 16:19 Expected ":"
Line 17:16 Expected identifier but found whitespace
Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 17:78 Expected ":"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 18:84 Expected ":"
... and 10 more hidden warnings

**/
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }

  }

  .quality-guarantee-section {
    position: relative;
    background-color: #f2f2f2;
    width: 100%;
    padding:50px 0px;
  }

  .quality-guarantee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
  }

  .quality-guarantee-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight:700;
     font-family: Montserrat;
    font-weight: 600;
    color: #2c4c45;
    text-transform: uppercase;
  }

  .quality-guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 400;
    
    line-height: 1.6;
    color: #333333;
    text-align: center;
  }

  .quality-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 70px;
    height: 70px;
  }

  @media screen and (max-width: 749px) {
    .quality-guarantee-container {
      padding: 30px 15px;
    }
    .quality-badge {
    display: none !important;
}
    .quality-badge {
      width: 60px;
      height: 60px;
    }
  }