

/*collectioncategories*/
.collection{
    max-width: 1120px;
    margin-top: 60px !important;
    margin:0 auto;
}
.collection h2{

    font-size: 38px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;

}
.category-list {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

.category-list .category-image{
    margin-bottom: 20px;
    overflow: hidden;
    width: 361px;
    height: 361px;
  }
  .collection article {
    margin-bottom: 40px;
    float: left;
    width: 33.33%;
    padding: 5px;
    box-sizing: border-box;
  }

  .collection article img{

    width: 361px!important;
    height: 361px!important;
    transition: transform .5s;
}
.collection article:hover img{

    transform: scale(1.1);
}
.collection .icon-arrow{
   
    width: 14px;
      
}
.collection a{

    color:#000;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}


/*mobile css*/

@media screen and (max-width: 1200px) {
  
    /*Collections*/
    .collection{
      width:90%;
      margin-top:0px!important;
    }
    
    .collection article img {
      width:auto!important;
      height:auto!important;
    }
    
    }


    @media screen and (max-width: 480px) {
        .collection article {width: 100%;}
      
      }