/*
 * 
 * CUSTOM :)
 */


.codoproducts {
 
  text-align:center;
  
}

.codoproducts .item{
  
  display:inline-block;
  width:181px;
  height:181px;
  position: relative;
  margin-right:20px;
}



.codoproducts .caption {

  position:absolute;
  background:black;
  top:0px;
  left:0px;
  height:200px;
  width:100%;
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
  color:white;
  cursor: pointer;
  padding:10px;
  opacity: 0;
}

.codoproducts .caption h2{
  color:white;
  padding-top:8px;
}

.item:hover .caption{
  -webkit-transition: all 1s;
  
  opacity: 0.8;
  display:block !important;
}