#instafeed ul { margin: 0; padding: 0;}
#instafeed .insta-foto {
  width: 20%;
  margin: 0;
  padding: 10px;
  float: left;
  position: relative;
}

.img-fluid {width:100%;}

#instafeed .insta-description {
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0);
  transition: all .25s;
  background-color: #60524d;
  color: white;
  line-height: 1.3;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#instafeed li:hover .insta-description {
  transform: scale(1);
}

.instagram_gallery a {
background: #fff;
}

@media (max-width:990px) {
  #instafeed .insta-description {
    font-size: 11px;
    line-height: 1.1;
  }
}

@media (max-width:768px) {
  #instafeed .insta-foto {
    width: 46%;
    margin: 2%;
    padding: 0;
    float: left;
    position: relative;
  }
  
  #instafeed .insta-description {
    font-size: 10px;
    line-height: 1;
  }
}