.banner {
  background: #E8DFCA;
  display: flex;
  color: #3D3935;
}
.banner-content {
  width: 50%;
  flex: 0 0 50%;
  position: relative;
  padding: 4.2rem;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.banner-image {
  width: 50%;
}
.banner-image img {
  width: 100%;
  height: 100%;
  flex: 0 0 50%;
  object-fit: cover;
}
.banner-h1 {
  font-size: 32px;
}
.banner-h2 {
  font-size: 22px;
}
.banner hr {
  height: 1px;
  width: 100px;
  max-width: 100%;
  background: #795D2B;
  margin: 0 auto;
}
.banner-buttons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.banner-button {
  flex: 1;
  height: 50px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: #3D3935;
  border: 1px solid #3D3935;
  padding: 7.5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}
.banner-button:hover {
  opacity: 0.7;
}
.banner-button.t2 {
  background: transparent;
  color: #3D3935;
}

@media screen and (max-width: 767px) {
  .banner-content {
    width: 65%;
    padding: 12px;
    gap: 10px;
  }
  .banner-image {
    width: 35%;
  }
  .banner-h1 {
    font-size: 17px;
  }
  .banner-h2 {
    font-size: 13px;
  }
  .banner-buttons {
    margin-top: 10px;
    gap: 7.5px;
  }
  .banner-button {
    height: 34px;
    font-size: 12px;
  }
}