.row-gallery {
    margin-left: 10% !important;
    margin-right: 10% !important;
}

.img__wrap {
  position: relative;
    overflow: hidden;
  /*height: 200px;*/
  /*width: 257px;*/
}

.img__description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /*background: rgba(29, 106, 154, 0.72);*/
    text-align: center;
    top: 0;
  color: white !important;
  visibility: hidden;
  opacity: 0;
  /*transform: translate(-50%, -50%);*/

  /* transition effect. not necessary */
  transition: opacity .2s, visibility .2s;
}

.img__wrap:hover .img__description {
  visibility: visible;
  opacity: 1;
}

.desc {
    padding: 15px;
    text-align: center;
    height: 100%;
    max-height: 100px;
}

.img-gallery {
    max-height: 100px !important;
    max-width: 175px !important;
    height: 100%;
    vertical-align: middle;
    display: inline-block;
    object-fit: contain;
}

/* Zoom-n-rotate Container */
.img__wrap img {
  transition: transform .5s ease;
}

/* The Transformation */
.img__wrap:hover img {
  transform: scale(1.5);
}

/*.img-opacity:hover {*/
/*    opacity: 0.5 !important;*/
/*}*/