.hero-video {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center top;
  background-size: cover;
  border-bottom: 2px solid #1E3E37;
}

.hero-video-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-video-container {
  grid-area: 1 / 2 / 2 / 3;
}

.hero-video-content-wrapper {
  grid-area: 1 / 1 / 2 / 3;
  padding-left: 64px;
  padding-right: 64px;
}

.hero-video-content-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  align-content: center;
}


.hero-video-content {
  padding-right: 64px;
  align-content: center;
}

.hero-video-title {
  font-family: 'TroisMilleRegular';
  font-size: 48px;
  line-height: 34px;
  font-weight: 400;
  margin-bottom: 30px;
  visibility: hidden;
}

.hero-video-title-large {
  font-family: 'TroisMilleRegular';
  font-size: 60px;
  font-weight: 400;
  line-height: 54px;
  letter-spacing: -0.01em;
  text-align: left;
  margin-bottom: 30px;
  visibility: hidden;
}

.hero-video-title span {
  display: block;
}

.hero-video-content p {
  visibility: hidden;
}

.hero-video-content a {
  margin-bottom: 20px;
}

.hero-video-wistia-container {
  position: relative;
  min-height: 640px;
  pointer-events: none;
  border-left: 2px solid #1E3E37;
}

.hero-video-wistia {
  position: absolute;
  inset: 0;
}

.hero-video-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-video-image img {
  width: 30%;
  height: auto;
  margin-right: 20%;
}

.hero-video-wistia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media only screen and (max-width: 991px){
  .hero-video-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .hero-video-content-container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .hero-video-content-wrapper {
    padding: 48px 20px;
  }

  .hero-video-content {
    padding-right: 0;
  }

  .hero-video-content a {
    margin-bottom: 0;
  }

  .hero-video-container {
    grid-area: 1 / 1 / 2 / 2;
  }

  .hero-video-content-wrapper {
    grid-area: 2 / 1 / 3 / 2;
  }

  .hero-video-wistia-container {
    border-left: none;
  }

  .hero-video-title span {
    display: inline-block;
  }
}

@media only screen and (max-width: 768px) {
  .hero-video-container {
    max-height: 420px;
  }

  .hero-video-image {
    height: 420px;
  }
}
@media only screen and (max-width: 480px) {
  .hero-video-container {
    max-height: 336px;
  }

  .hero-video-image {
    height: 336px;
  }
}