/* CSS Document */
.dol-bordered {border:none;border-radius:26px; overflow: hidden;}

/* Jumbotron layout */

.jumbo {
  position: relative; /* Because of .jumbo-video positioning */
  height: 100vh; /* 100% screen height */ 
  overflow: hidden;  /* Do not overflow video */
}

.no-flexbox .jumbo {
  overflow: visible;
  position: static;
  padding: 2em;
}

.jumbo-typo {  
  z-index: 2;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.2);  
}

.no-flexbox .jumbo-typo {
  position: static;
}

.jumbo-typo-main {
  flex: 1;
}

.jumbo-typo-bar {
  text-align: center;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 1em;
  margin: 0;
}

.no-flexbox .jumbo-typo-bar {
  text-align: left;
  color: black; 
  padding: 0;
}

/* Jumbotron heading centering */

.jumbo-typo-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.jumbo-typo-heading {
  padding: 2em;
  color: white;
}

.no-flexbox .jumbo-typo-heading {
  padding: 0;
  color: black;
}

.no-flexbox .jumbo-typo-heading {
  color: black;  
  text-align: left;
}

/* Video on the "background" */

.jumbo-video {
  z-index: 1;
  /* Centering: https://codepen.io/shshaw/pen/OVGWLG */
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%;   
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;  
  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);  
}



/* etc… */

.content {
  padding: 2em;
}