komoditas{
    width: 100%;
    height: 100%;
    margin: auto;
    overflow: hidden;
    position: relative;
    display: inline-block;
    vertical-align: top;
    border: 5px solid #fff;
    box-shadow: 0 0 5px #ddd;
    margin: 1em;
  }
  
  komcap{
    position: absolute;
    left: 0; right: 0;
    top: 0; bottom: 0;
    text-align: center;
    font-weight: bold;
    width: 100%;
    height: 100%;
    display: table;
  }
  
  komcap div{
    display: table-cell;
    vertical-align: middle;
    position: relative;
    top: 20px;
    opacity: 0;
    color: #2c3e50;
    text-transform: uppercase;
  }
  
  komcap div:after{
    position: absolute;
    content: "";
    left: 0; right: 0;
    bottom: 40%;
    text-align: center;
    margin: auto;
    width: 0%;
    height: 2px;
    background: #2c3e50;
  }
  
  komoditas img{
    -webkit-transition: all 0.5s linear;
            transition: all 0.5s linear;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  
  komoditas:hover komcap{
   background: rgba(255,255,255,0.3);
  }
  
  komcap:hover div{
    opacity: 1;
    top: 0;
  }
  
  komcap:hover div:after{
    width: 50%;
  }
  
  komoditas:hover img{
    -webkit-transform: scale3d(1.2, 1.2, 1);
            transform: scale3d(1.2, 1.2, 1);
  }
  
  *, *::before, *::after{
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    
    -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
  }