body {
  overflow-x: hidden;
}

.screen-container {
  max-width: 2400px;
  margin: 0 auto;
  position: relative;
}

.screen-container--dark:before,
.screen-container--dark:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 100%;
  background-color: #2F2E2F;
}
.screen-container--dark:before {
  right: 100%;
}
.screen-container--dark:after {
  left: 100%;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 0;
  width: 100vw;
  z-index: 100;
  background-color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s ease-in-out;
}

#site-header.header-hidden {
  transform: translateY(-100%);
}

#header-logo {
  width: auto;
  height: 70px;
  transform: translateY(5px);
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

nav a {
  padding: 1rem 0.5555555556rem !important;
}

.stat {
  padding: 1rem;
}

.stat-figure {
  font-size: 2.8rem;
}

.footer__nav--copyright {
  gap: 2rem;
}
.footer__nav--copyright svg {
  display: block;
  width: 70px;
  height: auto;
}

.footer__nav--secondary .container {
  flex-direction: row;
}
