.banner-area {
  display: block;
}

.banner-inner {
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
  position: relative;
  height: 25vh;
  min-height: 300px;
  text-shadow: 0 1px 0 #000;
  z-index: 0;
  overflow: hidden;
}
.banner-inner:after {
  background: linear-gradient(rgba(27,30,35,.5),rgba(27,30,35,.5));
  top: 0;
  right: 0;
  height: 100%;
}


.banner-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
}

.banner-img-wrapper {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner-padding {
  width: 100%;
  padding-bottom: 50%;
}

.banner-img img {
  display: block;
  vertical-align: middle;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  transition: opacity 500ms ease 0s;
  overflow: hidden;
}

.banner-area .content-wrapper {
  
/*   padding-right: 80px;
  padding-left: 80px; */
  padding-right: 6%;
  padding-left: 6%;
  width: 100%;
  z-index: 10;
}

.banner-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.banner-stack h1 {
  font-weight: 500;
  /*color: #59cb5c;*/
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: inherit;
  line-height: 1.5;
}

.banner-stack h2 {
  margin: 0;
  margin-top: .5rem;
  color: #fff;
  font-weight:300;
  line-height: 1.25;
  font-size: 1.875rem;
}


.banner-inner:before , .banner-inner:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}

.banner-inner:before {
  height: 20%;
  background: rgb(27, 30, 35);
  -webkit-filter: blur(15px);
  filter: blur(15px);
  transform: scale(2) translateY(20px);
  z-index: 1;
  opacity: .75;
}
.banner-img {
  height: 100%;
}

@media (min-width:767px){
  .banner-stack h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px){
  .banner-inner {
    height: 25vh;
    min-height: 250px;
  }
  .banner-stack h2 {
    font-size: 2.25rem;
  }

  .banner-stack h2 {
    font-size: 2.25rem;
  }
}