.banner_container {
  position: relative;
  z-index: 0;
  height: 500px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
}

.banner_container::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(8, 8, 8, 0.046)),
    url(/images/Banner.png);
  background-position: center;
  background-size: cover;

  z-index: -1;
}

.banner_banner h1 {
  position: absolute;
  top: 80px;
  left: 60px;
  width: 530px;
  margin: 0 auto;
  font-size: 6rem;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.5px;
  color: #ffffff;
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
}

@media only screen and (min-width: 360px) and (max-width: 480px) {
  .banner_banner h1 {
    width: 270px;
    font-size: 4rem;
  }

  .banner_container {
    width: 360px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 359px) {
  .banner_container {
    width: 320px;
  }

  .banner_banner h1 {
    width: 270px;
    font-size: 2rem;
  }
}
