


.product-page{
    display: flex;
    justify-content: center;
    height: 110vh;
  }

.product-images{

  width: 95%;
  height: 100vh;
  border: 1px solid #ccc;
  }

  img {
    width: 100%;
    height: 100%;
  }

.product-card {
    max-width: 90%;
    height: 90%vh;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
   
  }

  

  .product-card:hover .card {
    opacity: .7;
    cursor: pointer;
    filter: grayscale(1);
    
  }
  .product-card .card {
    margin: 10px;
    width: calc(100% / 3 - 20px);
    height: 25rem;
    float: left;
    box-shadow: 0 0 2px 2px rgba(0,0,0,.05);
    background: rgb(247, 192, 146);
    
    -webkit-transition: .3s all ease;
    transition: .15s all ease;
  }
  .product-card .card:hover {
    box-shadow: 0 0 8px 3px rgba(0,0,0,.15);
    transform: scale(1.025);
    opacity: 1;
    filter: grayscale(0);
    transition: .35s all ease;
  }
  .product-card .card img {
    width: 100%;
    padding: 0;
    margin: 0;
  }
  .product-card .card .content {
    padding: 15px 20px;
  }

  

  .product-card .card h3 {
    font: 1.8rem/2.8rem 'Bree Serif', serif;
    padding: 0;
    margin: 0 0 10px;
    letter-spacing: -.075rem;
    text-align: center;
    color: #f0632c;
  }
  .product-card .card p {
    color: #888;
    text-align: center;
    padding: 0;
    margin: 0;
    font: 400 1rem/1.5rem 'Open Sans script=all', sans-serif;
  }

  .product-card .card li{
    list-style-type:none;
    padding-left: 2rem;
    margin: 10px 0;
    text-align: left;
    
    color: rgb(21, 33, 39);
    font: 'Roboto';
    font-weight: 600;
            font-size: 0.9rem;
            margin: 10px 0 15px 0;
            word-wrap:break-word;
  }

  @media (max-width: 1000px) 
  {    
    .product-page{
      height: 200vh;
    }

  }

  @media (max-width: 920px) 
  {

    nav .logo{
      
      margin-left: -20px;
    
    }

    nav{
      padding: 0 0px 0 10px;
    }

    
     nav ul li a{
      color: #f2f2f2;
      text-decoration: none;
      font-size: 10px;
      font-weight: 400;

     }

    .product-page{
      height: 350vh;
    }

    .product-card .card {
      margin: 10px;
      width: calc(100%  - 20px);
      height: 20rem;
    
    }
    
  
    .product-card .card h3 {
      font: 1.0rem/1.4rem 'Bree Serif', serif;
    }
    .product-card .card p {
      font: 400 0.5rem/0.75rem 'Open Sans script=all', sans-serif;
    }
  
    .product-card .card li{
     
      font-weight: 300;
      font-size: 0.45rem;
             
    }

    
  
  }
