/* .img-hvr {
    position: relative;
   
}

.image {
  opacity: 1;
  
  
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%)
}

.img-hvr:hover .image {
  opacity: 0.3;
}

.img-hvr:hover .middle {
  opacity: 1;
}

.text {
  background-color: #4CAF50;
  color: white;
  font-size: 15px;
  padding: 5px;
}
 */


.cntr {
  position: relative;
  
}


.txt-div {
  position: absolute;
  top: -75px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  width: 200px;
  opacity: 0;
  transition: .5s ease;
  background-color: #008CBA;
}

.cntr:hover .txt-div {
  opacity: 1;
}

.txt {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}