.banner-wrapper {
  width: 100%;
  height: auto;
  position: relative;
}
.overlay_container {
  height: 100%;
  width: 100%;
  position: relative;
}

.overlay_container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}
.desktop-view-class {
  display: block;
}
.mobile-view-class {
  display: none;
}

.banner-text-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: end;
}
.banner-text-spacer {
  padding-top: 100px;
  padding-bottom: 100px;
  color: #fff;
}
.banner-title-wrapper {
  font-size: 60px;
  font-family: "mulish-bold";
}
.banner-sub-title-wrapper {
  font-family: "mulish";
  font-size: 40px;
  line-height: 60px;
}
.text-wrapper-height {
  min-height: 200px;
}

@media only screen and (max-width: 768px) and (min-width: 0px) {
  .desktop-view-class {
    display: none;
  }
  .mobile-view-class {
    display: block;
  }
  .banner-title-wrapper {
    font-size: 40px;
    font-family: "mulish-bold";
  }
  .banner-sub-title-wrapper {
    font-family: "mulish";
    font-size: 24px;
    line-height: 30px;
  }
  .banner-text-spacer {
    padding-top: 50px;
    padding-bottom: 50px;
    color: #fff;
  }
  .text-wrapper-height {
    min-height: 100px;
  }
}

