* {
    box-sizing: border-box;
  }

  div.gallery {
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  div.gallery:hover {
    transition: 0.5s all;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px / 5px 5px 0 0;

  }

  div.desc {
    padding: 15px;
    text-align: center;
  }
  
  .responsive {
    padding: 16px 6px;
    float: left;
    width: 25%;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

  .image-desc-title{
    font-weight: 500;
  }