/*
SUBPAGES TITLE HEADER
*/
#jumbo-header-behind {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  align-items: center;
  width: 100%;
  height: 120px;
  background-color: #4f5d73;
  border-bottom-left-radius: 40%;
  border-bottom-right-radius: 40%;
  z-index: 1;
}

#jumbo-header-front {
  position: relative;
  width: 100%;
  height: 120px;
  background-color: #1A2530;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  margin-top: -120px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-start;
}
#jumbo-header-front > h1 {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-weight: 300;
  margin: 0;
  text-align: center;
  font-size: 2rem;
  width: 80%;
}

#jumbo-header-front > #anchor {
  visibility: hidden;
  transform: scale(0.5, 0.5) translateY(-70px);
}

@media only screen and (min-width: 768px) {
  #jumbo-header-front > #anchor {
    visibility: visible;
  }
  #jumbo-header-behind {
    height: 160px;
  }
  #jumbo-header-front {
    height: 160px;
    margin-top: -160px;
  }
}
@media only screen and (min-width: 450px) {
  #jumbo-header-front > h1 {
    font-size: 2.5rem;
  }
}/*# sourceMappingURL=subpages_common_custom.css.map */