#banner {
  position: relative;
}
#banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#banner .info {
  position: absolute;
  bottom: 190px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #banner > img {
    min-height: 400px;
  }
  #banner {
      margin-top: 13.33vw;
  }
}
