.theme-pfn .in-page-banner {
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1420px;
  display: grid;
}
.theme-pfn .in-page-banner .content {
  text-wrap: balance;
  background: #faf5eb;
  flex-direction: column;
  grid-column: span 3;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
}
@media (width>=1024px) {
  .theme-pfn .in-page-banner .content {
    grid-area: 1/1 / auto/2;
    max-height: 40rem;
    padding: 4rem;
  }
}
.theme-pfn .in-page-banner h2 {
    letter-spacing: -.057em;
    color: #0f411e;
    text-transform: none;
    letter-spacing: -2px;
    font-family: Poppins,sans-serif;
    font-weight: 700;
        font-size: 3.8rem;
}
.theme-pfn .in-page-banner .image {
  grid-column: span 3;
  min-height: 20rem;
  position: relative;
}
@media (width>=1024px) {
  .theme-pfn .in-page-banner .image {
    grid-area: 1/2 / auto/4;
    max-height: 40rem;
  }
}
.theme-pfn .in-page-banner .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.theme-pfn .in-page-banner .btn {
  margin: 0;
      text-transform: none;
    color: #0f411e;
    font-family: Roboto Mono, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
}
.theme-pfn .in-page-banner.yellow .content {
  background: #fec01e;
}
.theme-pfn .in-page-banner.yellow h2 {
  color: #fff;
  background: #000;
}
