.hover {
  overflow: hidden;
  position: relative;
  padding-bottom: 60%;
}

.hover-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  transition: all 0.4s;
}

/* Controla el fondo del hover - la barrita */

.hover-5::after {
  content: '';
  width: 100%;
  height: 10px;
  background: #ff5d0a;
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  transition: all 0.3s;
  z-index: 999;
}

/* Controla el fondo de la foto principal */

.hover-5 .hover-overlay {
  background: rgba(0, 0, 0, 0.2);
}

/* Controla la posicion del texto base */

.hover-5-title {
  position: absolute;
  bottom: 1rem;
  left: 0;
  transition: all 1s;
  padding: 2rem 2rem;
  z-index: 99;
}

.hover-5-title span {
  transition: all 0.4s;
  opacity: 0;
  color: #ebc54a;
}

/* Controla el fondo del hover */

.hover-5:hover .hover-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.hover-5:hover .hover-5-title {
  bottom: 0;
}

.hover-5:hover .hover-5-title span {
  opacity: 1;
}

.hover-5:hover::after {
  bottom: 0;
}

.text-uppercase {
  text-transform: uppercase !important;
}

