
  /* PRODUCTOS */
  .wrap{
    max-width: 1100px;
    width: 90%;
    margin: auto;
  }
  
  .wrap > h1{
    color: #494B4D;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 15px 0px;
  }
  
  .wrap > h1:after{
    content: '';
    width: 100%;
    height: 1px;
    background: #C7C7C7;
    margin: 20px 0;
  }
  
  .store-wrapper{
    display: flex;
    flex-wrap: wrap;
  }
  
  .category_list{
    display: flex;
  }
  
  .category_list .category_item{
    display: block;
    font-family: 'Raleway', sans-serif;
    padding: 5px 0;
    margin-bottom: 20px;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #000;
  }
  
  .category_list .ct_item-active{
    background: #c7c7c7;
    border-radius: 8px;
    height: 50px;
  }
  
  /* PRODUCTOS ============*/
  
  .products-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  
  
  .products-list .product-item{
    width: 30%;
    margin-left: 3%;
    margin-bottom: 25px;
    box-shadow: 2px 2px 6px 2px rgba(0,0,0,0.22);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-start;
  
    transition: all .4s;
  }
  
  .products-list .product-item img{
    width: 100%;
    border-radius: 20px;
  }
  
  .products-list .product-item a{
    display: block;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    border-radius: 20px;
    width: 100%;
    padding: 8px 0;
    background: #fff;
    cursor: pointer;
    color: #000;
    text-align: center;
    text-decoration: none;
  }
  
  /* RESPONSIVE */
  
  @media screen and (max-width: 1100px){
    .products-list .product-item{
      width: 30.3%;
    }
  }
  
  @media screen and (max-width: 900px){
    .category_list,
    .products-list{
      width: 100%;
    }
  
    .category_list{
      flex-direction: row;
      justify-content: space-between;
    }
  
    .category_list .category_item{
      align-self: flex-start;
      width: 15%;
      font-size: 14px;
    }
  
    .products-list .product-item{
      margin-left: 4.5%;
    }
  
    .products-list .product-item:nth-child(3n+1){
      margin-left: 0px;
    }
  }
  
  @media screen and (max-width: 700px){
    .category_list{
      flex-direction: column;
    }
    .category_list .category_item{
      width: 100%;
      margin-bottom: 10px;
    }
  }
  
  @media screen and (max-width: 600px){
  
    .products-list .product-item{
      width: 47.5%;
    }
  
    .products-list .product-item:nth-child(3n+1){
      margin-left: 4.5%;
    }
  
    .products-list .product-item:nth-child(2n+1){
      margin-left: 0px;
    }
  
  }
  
  @media screen and (max-width: 350px){
    .products-list .product_item{
      width: 100%;
      margin-left: 0px;
    }
  }


  .swiper-container {
    width: 100%;
    height: 100%;
    font-family: 'Raleway', sans-serif;
    background: #000;
  }
  .swiper-slide {
    font-size: 18px;
    color:#000;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 60px;
  }
  .swiper-slide .title {
    font-size: 30px;
    font-weight: 300;
  }
  .swiper-slide .subtitle {
    font-size: 21px;
  }
  .swiper-slide .text {
    font-size: 17px;
    max-width: 800px;
    line-height: 1.3;
  }

  .parallax-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 130%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
  }