/* LAYOUT */
.cb-header-subpage {
  background-image: var(--background);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  margin-top: 0 !important;
}

.cb-header-subpage .cb-block__inner {
  position: absolute;
  bottom: 3rem;
  left: calc(((100% - 1040px) / 2) - 2rem);
}

.cb-header-subpage h1 {
  color: var(--white);
  font-size: 2.5rem;
  position: relative;
  text-align: center;
  padding: 0 1rem;
  margin: 0;
  max-width: 18.75rem;
}

.cb-header-subpage h1:after {
  content: "";
  border-radius: 50%;
  /* background-color:  #1c2a4bB3; */
  background-color: var(--dark-blue);
  position: absolute;
  width: 500px;
  aspect-ratio: 1 / 1;
  left: calc((100% - 500px) / 2);
  z-index: -1;
  top: calc(-250px + 100%);
  opacity: 0.7;
}

@media only screen and (max-width: 1330px) {
  .cb-header-subpage .cb-block__inner {
    left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .cb-header-subpage h1:after {
    width: 350px;
    left: calc((100% - 350px) / 2);
    top: calc(-175px + 30px);
  }
  .cb-header-subpage h1 {
    padding: 0;
  }
}
