/** Shopify CDN: Minification failed

Line 28:15 Expected identifier but found whitespace
Line 28:17 Unexpected "{"
Line 28:26 Expected ":"
Line 28:59 Expected ":"
Line 29:16 Expected identifier but found whitespace
Line 29:18 Unexpected "{"
Line 29:27 Expected ":"
Line 29:60 Expected ":"

**/


/* CSS from section stylesheet tags */
.leading-partners-wrapper {
  position: relative;
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.partner-image-desktop{
  max-width: 100%;
  height: auto;
  padding-left: {{ section.settings.horizontal_padding }}px;
  padding-right: {{ section.settings.horizontal_padding }}px;
  box-sizing: border-box;
}
.partner-image-mobile {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

.partner-image-mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .partner-image-desktop {
    display: none;
  }
  .partner-image-mobile {
    display: inline-block;
  }

  .leading-partners-wrapper {
      position: relative;
      padding: 40px 0 !important;
      background-size: inherit;
      background-repeat: repeat-y;
      background-position: center top;
   
  }

  
}