/*home hero*/
.home-hero {
    text-align: center;
    color: #fff;
    background-color: #000000;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
  }

  .home-bg {
    opacity: 0.4;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }


.home-hero-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    color: #fff;
    position: relative;
  }

.home-hero h1{

    font-size: 38px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;

}
.home-hero p {
  font-size: 18px;
  font-weight: 300;
  width: 90%;
  margin: 0 auto;
    margin-bottom: 0px;
  color: #fff !important;
}


/*content*/
main.page-main{

    max-width:100%!important;
    padding:0px!important;
}

.page-main .columns{
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding:0px!important;
    width: auto;
    display:block!important;
}

.page-main .columns .column.main{
    padding:0px!important;

}


/*home categories*/
.home-categories{
    max-width: 1120px;
    margin-top: 60px !important;
    margin: 0 auto;
}
.home-categories 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: 255px;
    height: 255px;
  }
.home-categories article {
    margin-bottom: 40px;
    float: left;
    width: 24%;
    padding: .25%;
    box-sizing: border-box;
    animation: animate-in 1s ease-out forwards;
  }

  @keyframes animate-in {
    from {
      opacity: 0;
      transform: translateY(1rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.home-categories article img{

    width: 255px!important;
    height: 255px!important;
    transition: transform .5s;
}
.home-categories article:hover img{

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

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



/*mobile css*/

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


@media screen and (max-width: 480px) {

  /*Home Collections*/
  .home-categories article {width: 100%;}
  .collection article {width: 100%;}
      
}