.hero-container {
  position: relative;
  height: 838px;
  overflow: hidden;
}

.section-parent {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 32px;
}

.ndg-title {
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  font-weight: 300;
  color: rgb(69, 84, 101);
  margin-top: 0;
}

.title-container {
  background: rgba(187,194,200,0.7);
  padding: 48px;
}

  h1 {
    font-size: 80px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: rgb(13, 31, 44);
    line-height: 1;
    max-width: 675px;
}

h1 em {
  display: inline;
  font-size: inherit;
  letter-spacing: 0;
  font-family: inherit;
  font-style: italic;
  color: inherit;
  text-transform: none;
  line-height: 1;
}

.title-subheading {
  font-size: 28px;
  font-family: "Roboto Condensed", sans-serif;
  color: rgb(13, 31, 44);
  font-weight: 300;
}

.logo {
  width: 136px;
  height: auto;
}

video {
  width: auto;
  height: 100%;
  position: absolute;
  top: 240px;
  z-index: -10;
  max-width: 120%;
}

.mobile-title-container {
  display: none;
}

/* EXTRA LARGE */
@media screen and (min-width: 1400px) {
  .hero-container {
    height: 1200px;
  }
}

/* TABLET DOWN */
@media screen and (max-width: 768px) {
  .ndg-title, .logo {
    display: none;
  }
  
  .hero-container {
    height: auto;
    position: static;
}
  
  .title-container {
    margin-bottom: -48px;
    padding: 24px;
  }
  
  h1 {
    font-size: 58px;
    max-width: 265px;
  }
  
  .title-subheading {
    display: none;
  }
  
  .mobile-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    gap: 16px;
  }
  
  .mobile-title {
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 300;
    color: rgb(69, 84, 101);
    margin: 0;
    line-height: 1.2;
  }
  
  .mobile-logo {
    width: 76px;
    height: auto;
  }
  
  video {
    position: relative;
    top: unset;
  }