<style>
    .box{
      background-color: #fff;
      padding: 10px 10px;
      position: relative;
      z-index: 0;
      transition: 0.2s all;
    }
    .box:hover{
      z-index:1;
      box-shadow:0 8px 50px rgba(0,0,0,0.2);
      transform: scale(1.05);
    }
    .box .img-box{
      width: 260px;
      /* height: 100px; */
      overflow: hidden;
      margin: 0 auto 20px;
    }
    </style>