#landing {
  position: relative;
  overflow: hidden;
  height: 50vh;
  min-height: 20rem;
  z-index: 0;
  overflow: hidden;
}
#landing-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/static/images/background/1-q4.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#landing-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: var(--estim-header-height, 2rem);
  padding-bottom: calc(var(--estim-header-height, 2rem) / 2);
  background: radial-gradient(rgba(0,0,0,.65), rgba(0,0,0,.25) 50%, transparent);
  text-shadow: 0 0 .1rem black;
  color: white;
}
#landing-tagline {
  text-align: center;
  margin-top: 0;
}
#stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.33rem;
}
.stats-stat {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  text-align: center;
}
.stat-value {
  font-size: 3rem;
  line-height: .85em;
}
#landing-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#landing-buttons > * {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
#landing-buttons > .style-outline {
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(5px) brightness(150%);
  -webkit-backdrop-filter: blur(5px) brightness(150%);
  transition: background .25s, backdrop-filter .33s, -webkit-backdrop-filter .33s;
}
#landing-buttons > .style-outline:hover {
  background: rgba(255,255,255,.33);
  backdrop-filter: blur(10px) brightness(150%);
  -webkit-backdrop-filter: blur(10px) brightness(150%);
}

#header-right {
  transition: opacity .5s;
  opacity: 1;
}
#header-right.hhide {
  opacity: 0;
  position: fixed;
  top: -100%;
  right: 100%;
}
