.heading__content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 42px;
}
.heading__content-wrapper {
  text-align: center;
}
.video-file-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.video-file-wrapper video {
  width: 100%;
  max-width: 900px;
  object-fit: cover;
}
.play-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: max-content;
  height: max-content;
  display: inline-flex;
  z-index: 3; 
  cursor: pointer;
}
.play-btn svg {
  transition: .3s;
}
.video-file-wrapper:hover .play-btn svg {
  transform: scale(1.1);
}
@media (max-width: 575px) {
  .video {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .play-btn {
    width: 42px;
  }
}
@media (min-width: 768px) {
  .heading__content-wrapper {
    max-width: 502px;
  }
  .heading__content {
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -0.72px;
  }
}
@media (min-width: 992px) {
  .heading__content-wrapper {
    max-width: 715px;
    gap: 42px;
  }
  .heading__subheading {
    max-width: 656px;
  }