/** Shopify CDN: Minification failed

Line 128:87 Unexpected "{"

**/
.collection-hero__inner {
    display: flex;
    flex-direction: column;
  }
  
  .collection-hero--with-image .collection-hero__inner {
    margin-bottom: 0;
    padding-bottom: 2rem;
  }
  
  @media screen and (min-width: 750px) {
    .collection-hero.collection-hero--with-image {
      width: 100%;
      padding: 0px 20px;
      overflow: hidden;
    }
  
    .collection-hero--with-image .collection-hero__inner {
      padding: 0;
      width: 100%;
      max-width: 100%;
    }
  }
  
  .collection-hero__text-wrapper {
    flex-basis: 100%;
  }
  
  @media screen and (min-width: 750px) {
    .collection-hero {
      padding: 0;
      box-shadow: inset 0px 1px 10px 10px #f4f4f4;
      padding-bottom: 50px;
    }
  
    .collection-hero__inner {
      align-items: center;
      flex-direction: row;
      padding-bottom: 0;
    }
  }
  
  .collection-hero__title {
    margin-bottom: 25px;
    margin-top: 50px;
    text-align: center;
    font-size: var(--text-xl);
  }

  @media(min-width: 750px) {
    .collection-hero__title {
      margin-bottom: 1.5rem;
      margin-top: 0;
      text-align: center;
      font-size: var(--text-2xl);
    }
  }
  
  .collection-hero__title + .collection-hero__description,
  .collection-hero__title + .collection-hero__description p {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    line-height: 2.7rem;
  }
  
  .collection-hero--with-image .collection-hero__title {
    margin: 0;
    font-size: var(--text-xl);
  }

  .collection-hero__description {
    font-size: 14px;
    line-height: 21px;
    text-align: center;
  }

  @media (max-width: 1024px){
    .collection-hero__description {
      line-height: 23px;
      letter-spacing: -0.1px;
    }
  }
  
  @media screen and (min-width: 750px) {
    .collection-hero__text-wrapper .collection-hero__description,
    .collection-hero__title + .collection-hero__description,
    .collection-hero__title + .collection-hero__description p {
      font-size: 1.8rem;
      margin-top: 3rem;
      margin-bottom: 5rem;
      margin-left: auto;
      margin-right: auto;
      text-align: center; 
    }

    .collection-hero--with-image .collection-hero__title {
      font-size: var(--text-3xl);
      margin-top: var(--spacing-base);
    }

    .collection-hero__title {
      margin-bottom: 0;
      margin-top: var(--spacing-base);
      font-size: var(--text-3xl);
    }
  
    .collection-hero__description {
      max-width: 66.67%;
    }
  
    /* .collection-hero--with-image .collection-hero__description {
      max-width: 100%;
    } */
  }
  
  
  .collection-hero--with-image .collection-hero__text-wrapper {
    padding: 0;
  }

  .collection-hero--with-image .collection-hero__text-wrapper .collection-hero__description,
  .collection-hero--with-image .collection-hero__text-wrapper .collection-hero__title, {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--text-s);
    text-align: center;
  }

  @media(max-width: 750px) {
    .collection-hero__image-container {
      max-width: 100vw!important;
      width: 100vw;
      margin-right: auto!important;
      margin-left: -15px!important;
    }
  }
  
  .collection-hero__image-container {
    margin: 50px 0px 60px;
  }

  .collection-hero__image-container img {
    position: relative!important;
  }
  
  @media screen and (max-width: 749px) {
    .collection-hero__image-container {
      height: 280px;
      margin: 30px 0;
    }
  }
  
  @media screen and (min-width: 750px) {
    .collection-hero--with-image .collection-hero__text-wrapper {
      padding: 4rem 2rem 4rem 0;
      flex-basis: 50%;
    }
  
    .collection-hero__image-container {
      align-self: stretch;
      flex: 1 0 50%;
      margin-left: 3rem;
      min-height: 20rem;
    }
  }
  
  .collection-hero--desktop {
    display: none;
  }
  
  .collection-hero--mobile {
    display: block;
  }

  @media(min-width:750px) {
    .collection-hero--desktop {
      display: flex;
    }
  
    .collection-hero--mobile {
      display: none;
    }
  }