.banner {
  width: 100%;
  /*height: 500px;*/
  min-height: 80vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 15%;
  margin-top: -180px;
}

@media (min-width: 768px) {
  .banner img {
    display: none;
  }
}

@media (max-width: 991px) {
  .banner {
    min-height: 65vh;
  }
}

@media (max-width: 768px) {
  .banner {
    min-height: 50vh;
    /*background-position: 0%;*/
  }
}

.banner-wrapper {
  /*background-color: antiquewhite;*/
  /*width: 100%;*/
  /*height: 500px;*/
  max-height: 100vh;
}

.banner-overlay {
  /*display: flex;*/
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  /*width: 100%;*/
  /*height: max-content;*/
  /*margin-top: -120px;*/
  background: rgba(0,0,0,0.3);
  justify-content: center;
  align-items: center;
}

.banner-overlay-heading span {
  font-size: 32px;
  font-weight: 600;
  color: #eee;
  margin-top: 125px;
}

.banner-overlay-heading {
  display: flex;
  width: 100%;
  /*height: 100%;*/
  justify-content: center;
  align-items: center;
}

