/* Section 4 */
.s4-listing-image {
  height: 400px;
  width: 100%;
}

.image-wrap {
  height: 400px;
  cursor: pointer;
  position: relative;
}

.hidden-text {
  background-color: #58595b;
  color: #fff;
  padding: 25px 40px;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s, opacity 0.5s linear;
  transition: visibility 0s, opacity 0.5s linear;
  /* max-height: 90.34px; */
  overflow: hidden;
}
.s4-text1 {
  font-size: 11px;
  font-family: NunitoSans;
  white-space: nowrap;
  overflow: hidden;
  height: 12.65px;
}
.s4-text2 {
  margin-top: 7px;
  font-size: 18px;
  font-family: Poppins;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  height: 20.7px;
}

.image-wrap:hover .hidden-text {
  visibility: visible;
  opacity: 1;
}
