.home_banner_v2 {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: #01225E var(--banner-image) center / cover no-repeat;
  overflow: hidden;
}
.home_banner_v2 .content_container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.home_banner_v2 .content {
  max-width: 400px;
  padding: 80px 0;
  color: #FFFFFF;
}
.home_banner_v2 h1, .home_banner_v2 p {
  color: #FFFFFF;
}
.home_banner_v2 .copy {
  max-width: 100%;
  font-family: "euclid_circular_aregular", sans-serif;
  font-size: 16px;
  line-height: 1.4em;
}
.home_banner_v2 .copy p {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
@media only screen and (max-width: 768px) {
  .home_banner_v2 {
    min-height: 620px;
    background-position: 62% center;
  }
  .home_banner_v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(1, 34, 94, 0.72);
  }
  .home_banner_v2 .content {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 600px) {
  .home_banner_v2 .content {
    width: 100%;
    max-width: none;
  }
}
