body {
	background-color: #d5d2c9;
	font-family: 'Montserrat', sans-serif;
	overflow-x: hidden;
}

header {
	height: 100vh;
	background-color: gray;
	background-image: ;
	overflow: hidden;
}

#bgvid {
	object-fit: cover;
	height: 100vh;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
}

#header-links {
	position: relative;
	text-align: right;
	margin-right: 1rem;
}

h1, h2, .blue {
	color: #00a2fc;
}

h1 {
	font-size: 3.5rem;
	font-weight: 500;
}

p, dl, li {
	font-weight: 500;
}

dl {
	line-height: 1.25rem;
}

dt {
	margin-bottom: .25rem;
}

dd {
	margin-bottom: 1.5rem;
}

.text-justify {
  text-align: justify;
}
.text-justify:after {
  content: "";
  display: inline-block;
  width: 100%;
}

section {
	margin-top: 5rem;
	margin-bottom: 5rem;
}

a {
	text-decoration: none;
	color: white;
}

#contact a {
	color: black;
}

a:hover {
	color: #00a2fc;
}

#contact a:hover {
	color: #00a2fc;
}

a:visited {
	text-decoration: none;
}

.vid-container{
	position: relative;
	overflow: hidden;
}

.vid-container video{
	position: absolute;
	top: 0;
	right: 0;
	padding: inherit;
	transition: opacity .5s ease;
	opacity: 0;
}

.vid-container:hover video {
	opacity: 1;
}

.modal-content {
	background: none;
	border: none;
}

.modal-body {
	padding: 0;
}

@media only screen and (min-width: 992px) {
  #header-links {
  	position: absolute;
	bottom: 0;
	margin: 1rem;
  }
}