.icon-footer {
  margin-right: 10px;
}

.opening-label {
  float: left;
  font-weight: bold;
  margin-right: 0.5em;
  min-width: 110px;
}

.text-foot-densed {
  line-height: 1.1;
}

a[href*="0"] {
  color: inherit;
  text-decoration: none;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* full screen height, adjust as needed */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* behave like background-size: cover */
    z-index: -1; /* send it behind content */
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: black;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}