.product-wrapper {
    display: block;
    width: 100%;
    float: left;
    transition: width .2s;
  }

  @media only screen and (min-width: 450px) {
    .product-wrapper {
      width: 50%;
    }
  }
  
  @media only screen and (min-width: 768px) {
    .product-wrapper {
      width: 33.333%;
    }
  }
  
  @media only screen and (min-width: 1000px) {
    .product-wrapper {
      width: 25%;
    }

  }

  .product {
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.712);
    border-radius: 3px;
    position: relative;
    background: #000000;
    margin: 0 20px 20px 0;
    text-decoration: none;
    color: #ffffff;
    z-index: 0;
    height: 700px;
    box-shadow: 0 12px 16px 0 rgba(255, 255, 255, 0.116), 0 17px 50px 0 rgba(255, 255, 255, 0.05)
  }

  @media (max-width: 700px) {
    .product{
      height: 100%;
    }
  }

  .product-photo {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 6px;
    
  }

  .product-photo img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 95%;
    max-height: 95%;
    
    margin: auto;
    transition: transform .4s ease-out;
  }

  .product:hover .product-photo img {
    transform: scale(1.05);
  }

  .product p {
    position: relative;
    margin: 0;
    font-size: 1.1em;
    line-height: 1.4em;
    height: 10em;
    overflow: hidden;
    padding-left: 5%;
    padding-right: 5%;
    color: #ffffff85;

  }

  .product p:after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 4.2em;
    height: 1.6em;
    background: linear-gradient(to left top, #000000, rgba(255, 255, 255, 0));
  }

  .product h1 {

    padding-left: 2.5%;
    padding-right: 5%;

  }

  .buttonpruduct {
    background-color: #ffffff;
    border: none;
    color: rgb(0, 0, 0);
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    width: 50%;
    height: 2.3em;
    box-shadow: 0 12px 16px 0 rgba(255, 255, 255, 0.116), 0 17px 50px 0 rgba(255, 255, 255, 0.05)

}

