* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Helvetica, sans-serif;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 5%;
}

.hero-bg-video-picframe {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    min-height: 100%;
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hbvp-mobile {
  display: block;
}

.hbvp-desktop {
  display: none;
}

.hero-bg-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 481px) {
  .hbvp-mobile {
    display: none;
  }

  .hbvp-desktop {
    display: block;
  }
}

video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 100%;
}

.logo {
    width: 225px;
    height: auto;
    margin-bottom: 2em;
}

h1 {
    font-size: 1.75em;
    font-weight:100;
    letter-spacing: 0.05em;
    line-height: 1.25;
}

.dot {
  animation: 2s enter;
  background-color: #F2326E;
  border-radius: 100%;
  height: 50px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
}

@keyframes enter {
  0% {
    opacity: 0;
    transform: scale(0.5) translate(-100%, -100%);
  }
  
  50% {
    opacity: .5;
  }
}