.img-desc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.img-desc img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(90%);
}
.sbs-outer {
  width: 100%;
  height: 300px;
  display: flex;
}
.img-desc .sbs {
  width: 50%;
  object-fit: cover;
  display: inline-block;
}

.img-content {
  font-family: sans-serif;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.img-content h5 {
  margin: 20px;
  margin-bottom: 10px;
}

.img-content p {
  margin: 0 20px;
  padding-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .img-desc .sbs {
    width: 100%;
    height: auto;
  }
  .sbs-outer {
    flex-direction: column;
    height: auto;
  }

  .img-desc {
    position: static;
  }
  .img-content {
    position: static;
    background: black;
  }
}
