.mm-text-with-video-section {

  * {
    letter-spacing: 0;
  }

  position: relative;

  .video-container {
    display: flex;

    video {
      height: 375px;
      width: 100%;
      object-fit: cover;
    }
  }

  .video-container::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
  }

  .text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
  }

  .subheading * {
    margin: 0;
    color: #fff;
    font-family: var(--font-poppins);
    font-weight: 300;
    font-size: 16px;
  }

  .heading * {
    font-family: var(--font-larken);
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    margin: 6px 0 16px;
  }

  .description * {
    margin: 0;
    color: #fff;
    font-family: var(--font-poppins);
    font-weight: 300;
    font-size: 14px;
    line-height: 130%;
  }

  @media (min-width: 992px) {
    .video-container video {
      height: 450px;
    }

    .subheading * {
      font-size: 20px;
    }

    .heading * {
      font-size: 48px;
      margin: 20px 0 24px;
    }

    .description * {
      font-size: 16px;
    }
  }
}