.banner {
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  z-index: 2;
  min-height: 345px;
  max-height: 345px;
  position: relative;
  margin-top: -148px;
  padding-top: 148px;

}
.banner .content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1340px;
} 
.banner .content {
  top: 0;
  padding-top: 0;
  height: auto;
  max-width: 562px;
  position: relative;
  z-index: 3;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.66px;
  text-align: center;
  color: #ffffff;
  animation: 1.5s ease-out 0.5s 1 forwards contentFadeIn;
}
.banner:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
  background-image: linear-gradient(to bottom, #23323b, rgba(35, 50, 59, 0.5));
}
.banner .content h1 {
  margin-bottom: 32px;
  font-size: 45px;
  line-height: 47px;
  font-weight: bold;
  color: #ffffff;
  font-family: "IBM Plex Sans", sans-serif;
}
@media(max-width:767px){
  .banner {
    margin-top: -75px;
    padding-top: 75px;
  }
  .banner .content {
    top: 28px;
  }
  .banner .content h1 {
    margin-bottom: 15px;
  }