.page_banner_v2 {
  position: relative;
  height: 500px;
  display: flex;
  align-items: stretch;
  background-color: #FFF9F5;
  overflow: hidden;
}
.page_banner_v2 .content_container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.page_banner_v2 .content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  padding: 70px 0;
  color: #01225E;
}
.page_banner_v2 h1,
.page_banner_v2 p {
  color: #01225E;
}
.page_banner_v2 .copy {
  max-width: 100%;
}
.page_banner_v2 .copy p:last-child {
  margin-bottom: 0;
}
.page_banner_v2 .graphic {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: auto !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  pointer-events: none;
}

@media only screen and (max-width: 768px) {
  .page_banner_v2 {
    height: 420px;
  }
  .page_banner_v2 .content {
    max-width: 480px;
    padding: 60px 0;
  }
}
@media only screen and (max-width: 600px) {
  .page_banner_v2 {
    height: auto;
    min-height: 0;
  }
  .page_banner_v2 .content_container {
    height: auto;
    min-height: 0;
  }
  .page_banner_v2 .content {
    max-width: none;
    padding: 60px 0;
  }
  .page_banner_v2 .graphic {
    opacity: 0.3;
  }
}