.product_header {
  width: 100%;
  height: 35vh;
  background-image: url(/images/sol_pattern-1.jpg);
  background-size: cover;
  background-position-y: 30%;
  position: relative;
}
.product_header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.product_header .p_title {
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  text-align: center;
  position: absolute;
  top: 55%;
  left: 0px;
  right: 0;
}

@media only screen and (min-width: 600px) {
  .product_header .p_title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1000px) {
  .product_header .p_title {
    font-size: 32px;
  }
}