.banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  padding: 0px 16px;
  text-align: center;
  transform: translate(-50%, -50%);
  width: 90%;
}

.banner__content h1 {
  font-size: 20px;
  font-family: var(--f4);
}

.banner__content h2 {
  font-size: 15px;
  line-height: 1.2;
}

.banner {
  position: relative;
  width: 94%;
  max-width: 1164px;
  margin: auto;
}

.banner img {
  display: block;
  margin: 30px auto 20px;
  border-radius: 10px;
}

@media (min-width: 768px) {
  
  .banner__content {
    display: block;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    padding: 0px 20px;
    text-align: left;
    line-height: 1.2;
  }

  .banner__content h1 {
    font-size: 28px;
    font-family: var(--f4);
    margin-bottom: 4px;
  }

  .banner__content h2 {
    font-size: 20px;
    line-height: 1.2;
  }
}