/** Shopify CDN: Minification failed

Line 105:1 Expected "}" to go with "{"

**/
.product-categories__content{
  display: flex;
  flex-direction: column;
}
.title__formobile {
    display: none;
  }

.product-categories__products-wrapper{
  display: flex;
  justify-content: space-around;
  width: 80%;
  align-self: center;
  margin-top: 1rem;
}

.product-image__wrapper {
  position: relative;
  width: 100%;
  justify-self: center;
}
.product-categories__product-content{
  text-align: center;
  max-width:250px;
}
.product-categories__product-content img{
width:100%;
}

.product-categories__heading {
  font-family: var(--heading-font);
}
.product-categories__product-name {
  font-family: var(--heading-font);
  text-decoration: none;
  display: block;
  margin: 10px 0;
}
.product-icon__wrapper {
  position: absolute;
  top: 2rem;
  right: -14rem;
 
}
.product-image__wrapper .product--image {
  transition: transform 0.2s ease-in-out;
}

.product-icon__wrapper img{
  width: 150px;
  transition: transform 0.2s ease-in-out;
}
.product-categories__product-content .button{
  border-radius: 5px;
  padding: 1.7rem 4rem;
  font-family: var(--heading-font);
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}


.product-categories__product-content .button::after,
.product-categories__product-content .button::before{
  content: none;
}

@media screen and (max-width: 900px){
  .product-categories__products-wrapper{
    flex-direction: column;
    width: auto;
  row-gap: 5rem;
  }
  .product-image__wrapper{
    text-align: left;
    width: auto;
    justify-self: auto;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;

  
  .product-icon__wrapper img{
  width: 100px;
}
  .product-image__wrapper .product--image{
    width: 65%;
  }
  .product-icon__wrapper {
  position: relative;
  top: auto;
  right: auto;
     display:none;
}
  .title_d{
    display: none!important;
  }
  .title__formobile{
    display:block;
    
  }
}