/* === Custom Block Styling === */
.landingPageHero {
  padding-top: var(--CB-padding-top);
  padding-right: var(--CB-padding-right);
  padding-bottom: var(--CB-padding-bottom);
  padding-left: var(--CB-padding-left);
  margin-top: var(--CB-margin-top);
  margin-bottom: var(--CB-margin-bottom);
}


.landingPageHero__topContainer{
    padding-top: 250px;
    padding-bottom: 200px;
    background-size: cover;
    background-position: center;
}
.landingPageHero__topContainer::after{
    content: '';
    background-color: var(--FC-black);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .33;
}
.landingPage__bottomContainer{
    margin-top: -64px;
}
.landingPageHero__title{
    text-align: center;
    color: var(--FC-white);
}
.landingPageHero__lineWrapper {
  height: 175px;
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 33%;
  z-index: 99;
}
.landingPageHero__line {
  height: 100%;
  width: 2px;
  background-color: var(--FC-tertiary-color);
}