.banner_outer {
  position: relative;
  display: flex;    
  overflow: hidden;
  margin: 20px 0 50px;
  width: 100%;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;	
}

.banner_image img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  text-align: center;
  pointer-events: none;
}

