body {
	background-color: #192C34;
}
video {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  -webkit-filter: blur(4px);
}
a, a:visited {
   text-decoration: none;
   outline: 0;
   -webkit-transition: color .3s ease-in-out;
   -moz-transition: color .3s ease-in-out;
   -o-transition: color .3s ease-in-out;
   transition: color .3s ease-in-out;
}
.row.header {
	text-shadow: 0px 1px 2px rgba(0, 0, 0, .8);
	height: 100vh;
}
.header img {
	width: 200px;
}
.header h1 {
	font-weight: 600;
	font-size: 80px;
	color: #fff;
	font-family: Calibri;
}
.header h3 {
	font-weight: 400;
	font-size: 18px;
	color: #A8A8A8;
	margin-top:1rem;
}
.header hr {
	width: 60%;
	margin: 18px auto 24px auto;
	/*border-color: #2F2D2E;*/
	border-color: rgba(150, 150, 150, .1);
}
.social>a {
	font-size: 30px;
	color: #fff;
	padding: 2px;
	margin: 0 15px;
}
.social>a:hover {
	color: #11ABB0;
}


/* Responsives */

@media screen and (max-width: 575px) { /*xs*/
.header img { width: 125px; }
.header h1 { font-size: 40px; }
.header h3 { font-size: 14px; }
.social>a { font-size: 20px; margin: 0 10px; }
}
@media screen and (min-width: 576px) and (max-width: 767px) { /*sm*/
.header img { width: 150px; }
.header h1 { font-size: 50px; }
.header h3 { font-size: 15px; }
.social>a { font-size: 24px; margin: 0 12px; }
}
@media screen and (min-width: 768px) and (max-width: 991px) { /*md*/
.header img { width: 175px; }
.header h1 { font-size: 60px; }
.header h3 { font-size: 16px; }
.social>a { font-size: 26px; margin: 0 12px; }
}
@media screen and (min-width: 992px) and (max-width: 1199px) { /*lg*/
.header h1 { font-size: 70px; }
.header h3 { font-size: 17px; }
}
@media screen and (min-width: 1200px) { /*xl*/
}