html,
body {
  margin: 0;
  min-height: 100%;
  background-color: #071a33;
}

#root,
#root > div:first-child {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  background-color: #071a33;
}

.hidden {
  display: none;
}

@media (max-width: 1023px) {
  .lg\:block,
  .lg\:flex,
  .lg\:inline-flex {
    display: none !important;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}

:where(header > div:nth-child(2)) {
  display: flex;
  height: 5rem;
  align-items: center;
}

main {
  display: flex;
  flex: 1 1 0%;
  flex-direction: column;
  margin-top: -5rem;
}

main > div:first-child {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
}

.home-hero-section {
  position: relative;
  display: flex;
  min-height: 0;
  flex: 1 1 0%;
  flex-direction: column;
  overflow: hidden;
}

.home-hero-visual {
  position: relative;
  min-height: 420px;
  flex: 1 1 0%;
  overflow: hidden;
}

.home-hero-background,
.hero-bbb-badge {
  position: absolute;
}

.home-hero-background {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bbb-badge {
  z-index: 3;
  width: clamp(6rem, 8.5vw, 8rem);
}

.home-hero-visual > .container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .home-hero-visual {
    min-height: 520px;
  }
}