.homepage-header-block {
  background-color: var(--primarycolor);
  overflow-x: clip;
}
.homepage-header-block.hh-full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.homepage-header-block .hh-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.homepage-header-block .hh-side {
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
}
.homepage-header-block .hh-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 7 / 4;
}
.homepage-header-block .hh-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.homepage-header-block .circleimage {
  position: absolute;
  bottom: 0;
  width: 200%;
  aspect-ratio: 1 / 1;
  transform: translateY(50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  pointer-events: none;
}
.homepage-header-block .hh-side:nth-child(odd) .circleimage {
  left: 0;
}
.homepage-header-block .hh-side:nth-child(even) .circleimage {
  right: 0;
}
.homepage-header-block .hh-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  gap: 30px 40px;
  padding: 70px 60px 80px;
  flex: 1 1 auto;
}
.homepage-header-block .hh-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.homepage-header-block .hh-headline {
  color: var(--hh-accent, var(--white));
  font-size: clamp(2.25rem, 3.6vw, 3.5rem);
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.homepage-header-block .hh-subhead {
  color: var(--white);
  font-size: clamp(1rem, 1.3vw, 1.375rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 0 0 30px;
}
.homepage-header-block .hh-text {
  color: var(--white);
  max-width: 42ch;
}
.homepage-header-block .hh-text p {
  color: var(--white);
  margin-bottom: 15px;
}
.homepage-header-block .hh-text p:last-child {
  margin-bottom: 0;
}
.homepage-header-block .hh-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: auto;
  padding-top: 50px;
}
.homepage-header-block .hh-textlink {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}
.homepage-header-block .hh-textlink:hover,
.homepage-header-block .hh-textlink:focus {
  color: var(--white);
  text-decoration: none;
}
.homepage-header-block .hh-textlink .fa {
  color: var(--hh-accent, var(--white));
  font-size: 1.25em;
  transition: transform 0.25s ease;
}
.homepage-header-block .hh-textlink:hover .fa {
  transform: translateX(6px);
}
.homepage-header-block .hh-links {
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.homepage-header-block .hh-links li + li {
  margin-top: 30px;
}
.homepage-header-block .hh-links a {
  color: var(--hh-accent, var(--white));
  text-decoration: none;
  font-size: 1.125rem;
  line-height: 1.3;
}
.homepage-header-block .hh-links a:hover,
.homepage-header-block .hh-links a:focus {
  color: var(--hh-accent, var(--white));
  text-decoration: underline;
}
.homepage-header-block .hh-side::after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.08' stroke-width='1'%3E%3Ccircle cx='200' cy='200' r='80'/%3E%3Ccircle cx='200' cy='200' r='96'/%3E%3Ccircle cx='200' cy='200' r='112'/%3E%3Ccircle cx='200' cy='200' r='128'/%3E%3Ccircle cx='200' cy='200' r='144'/%3E%3Ccircle cx='200' cy='200' r='160'/%3E%3Ccircle cx='200' cy='200' r='176'/%3E%3Ccircle cx='200' cy='200' r='192'/%3E%3C/g%3E%3C/svg%3E");
}
@media only screen and (max-width: 1199px) {
  .homepage-header-block .hh-body {
    padding: 50px 35px 60px;
    gap: 25px 30px;
  }
  .homepage-header-block .hh-ctas {
    padding-top: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .homepage-header-block .hh-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .homepage-header-block .hh-side:nth-child(odd) .circleimage {
    width: 100%;
  }
  .homepage-header-block .hh-side:nth-child(even) .circleimage {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .homepage-header-block .hh-body {
    grid-template-columns: minmax(0, 1fr);
    padding: 40px 25px 50px;
  }
  .homepage-header-block .hh-text {
    max-width: none;
  }
  .homepage-header-block .hh-links li + li {
    margin-top: 18px;
  }
}
