.proyecto-img-container {
  height: 370px;
  overflow: hidden;
}
.proyecto-img {
  width: calc(100% + 20px);
  background-position: center center;
  background-size: cover;
}
.proyecto-info-container{
  background-color: #FFF;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.proyecto-info {
  position: absolute;
  bottom: 0;
  transition: all .5s;
  transform: translatey(50px);
}
.proyecto-info-active {
  transform: none;
}
.proyecto-info-state {
  text-transform: uppercase;
}
.proyecto-button {
  font-weight: 700;
  margin-top: 10px;
  color: #FFF;
  width: 200px;
  height: 46px;
  line-height: 46px;
  border-radius: 23px 23px 23px 0;
  text-align: center;
}

/* MEDIA QUERIES *****************************************************************/

@media screen and (max-width: 992px) { 
  .proyecto-info {
    position: relative;
    transform: none;
  }
}
