main#brx-content {
    z-index: 1;
}


/*** ADVANCED SETTINGS ***/
/*** HEADING SETTINGS ***/
body[data-global-headings~="h1_underline"] h1:after {
    content: '';
    position: absolute;
    bottom: -5% !important;
    left: 50%;
    width: 100%;
    border-bottom: 1px solid var(--light);
    transform: translateX(-50%);
}
body[data-global-headings~="h1_bold"] h1 {
	font-weight: bold !important;
}

/* FADE IN EFFECT - Oct 2024
@keyframes fadeOut {
    0%, 30% {
      opacity: 0.80;
      backdrop-filter: grayscale(100%);
    }
    100% {
      opacity: 0;
      backdrop-filter: grayscale(0%);
    }
  }
  
  @keyframes zIndexChange {
    0% {
      z-index: 5;
    }
    100% {
      z-index: -1;
    }
  }
  header::before,
  main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-size: cover;
    z-index: 5;
    opacity: 1;
    backdrop-filter: grayscale(100%);
    animation: fadeOut 2s ease forwards, zIndexChange 3s ease 2s forwards;
    animation-delay: 2s;
  }
  
  .hero__content-wrap {
    position: relative !important;
    z-index: auto !important;
  }
  
  .hero__text.keep-color,
  .hero__text.keep-color * {
    position: relative;
    z-index: 99 !important;
    filter: grayscale(0%);
  }
  
  .hero__text.keep-color::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: 3 !important;
    filter: none;
  }
  */