* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
          box-sizing: border-box;
}

.pic {
  border: 1px solid #fff;
  float: left;
  width: 105px;
  height: 143px;
  margin: 15px 5px 1px 20px;
  overflow: hidden;

  -webkit-box-shadow: 5px 5px 5px #111;
  box-shadow: 5px 5px 5px #111;
}

/*GROW*/
.grow img {
  width: 105px;
  height: 143px;

  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.grow img:hover {
  width: 132px;
  height: 180px;
}