.hero#home {
    width: 100%;
    height: 100vh !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

#home > div.hero-content > h1 > span {
  background: var(--color-primary-900) !important;
  color: var(--color-primary-200) !important;

  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: var(--color-primary-200) !important;
  background-clip: initial !important;
  padding: 0.2rem 0.5rem;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    backdrop-filter: blur(10px);
}

.hero-subtitle {
    /* background: rgba(0, 0, 0, 0.09); */
    backdrop-filter: blur(5px);
    color: var(--color-primary-200) !important;
}