.video-block {
  /*background: #00000180;*/
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55vw;
  /*max-height: 75vh;*/
}

.hero-lead-link {
  position: absolute;
  bottom: 0;
  padding: 1.75rem 0;
}

.video-block-content {
  color: #fff;
}
.video-block-title {
  line-height: 1.3;
  margin-bottom: 1rem;
}
.video-block-description {
  font-size: 1.5rem;
  font-weight: 600;
}
.play-hero-video {
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 800;
  height: 100%;
  position: absolute;
    left: 0;
    top: 0;
  width: 100%;
}
    .play-hero-video #play-button {
      height: auto;
      max-width: 20vw;
      opacity: .9;
      -webkit-transition: var(--transition);
      transition: var(--transition);
    }
    .play-hero-video:hover #play-button {
      opacity: .7;
    }
.video-block video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}


@media all and (max-width: 1199px) {
  .hero-lead-link .arrow-down {
    height: auto;
    max-width: 70px;
  }
}

@media all and (max-width: 823px) {
  .video-block-title {
    margin-bottom: .5rem;
  }
  .video-block-description {
    font-size: 1.25rem;
  }
  .hero-lead-link {
    padding: 1rem 0;
  }
  .hero-lead-link .arrow-down {
    max-width: 48px;
  }
}

@media all and (max-width: 639px) {
  /* only if 'lead-link' is visible
    .video-block-container {
    margin-bottom: 1.5rem;
  }*/
  .video-block-title {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .hero-lead-link { display: none; }
  .hero-lead-link .arrow-down {
    max-width: 36px;
  }
}