html {
  height: 100%;
}
body {
  height: 100%;
  color: white;
}
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
}
header {
  z-index: 1000;
}

.banner {
  display: flex;
  justify-content: center;
  align-items: top;
  height: 200px;
  border: 3px solid red;
}

/* Customize default Bootstrap header */
.header {
  width: 100%;
}
.navbar {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: blue; /* Header bkgnd color. The original red is #D9002F */
  border: none; /* Get rid of default white 1-pixel border */
  }
.navbar a.navbar-brand {
  font-weight: bold;
  letter-spacing: 0.2em;
  color: white; /* Branding text color (URL name) */
}
.navbar a.navbar-brand:focus,
.navbar a.navbar-brand:hover {
  border-bottom: none;
}
.navbar .navbar-nav > li > a {
  font-weight: bold;
  color: white; /* Menu item text color */
}
.domainname {

  vertical-align: middle;
  padding-top:20px;

}

/* Code to add bar above menu items in large windows */
@media (min-width: 768px) {
  .navbar ul.nav > li > a {
    border-top: solid 2px transparent;
    padding-top: 17.5px;
  }
  .navbar ul.nav > li > a:hover,
  .navbar ul.nav > li > a:focus {
    border-top-color: #D9002F; /* Color of bar above menu items */
    border-bottom: none;
  }
  .navbar ul.nav > li.active > a,
  .navbar ul.nav > li.open > a {
    text-decoration: none !important;
    border-top-color: #D9002F; /* Color of bar above highlighted menu items */
  }
}

/* Video Configuration */
body .landing {
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 10px;
  /*  border: 10px solid rgba(255, 255, 255, 0.5); */
  border: 0;
}
body .landing video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  object-fit: cover;
}
body .landing .dim {
  height: 100%;
  width: 100%;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: black;
}
body .landing .text {
  position: relative;
  top: 100px;
  text-align: center;
}

/* Image Manipulation */
.floatright {
	float:right;
	margin: 20px;
}
.floatleft {
	float:left;
	margin: 20px;
}
.polaroidpicture {
    position: relative;
    -moz-box-shadow: 1px 2px 4px rgba(0, 0, 0,0.5);
    -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
    padding: 10px;
    background: white;
}

/* Backdrop Image Below Header */
.contact-jumbotron {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  text-align: center;
  background: url('../img/contact_inmotion.jpg') center center no-repeat;
  background-size: cover;
  vertical-align: top;
}
.donate-jumbotron {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  text-align: center;
  background: url('../img/donate_inmotion.jpg') center center no-repeat;
  background-size: cover;
  vertical-align: top;
}


/* Make the image fit the box */
.polaroid img {
    width: 100%;
    border: 1px solid #8a4419;
    border-style: inset;
}

/* Backdrop Image Below Header */
.main-jumbotron {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  text-align: center;
  background: url('../img/main_photo_gradient.jpg') center center no-repeat;
  background-size: cover;
  vertical-align: top;
}
.main-jumbotron .content {
  position: relative;
}
.main-jumbotron p a:not(.btn) {
  color: #fff;
}
.main-jumbotron p a:not(.btn):hover {
  color: #fff;
  border-color: #fff;
}
.main-jumbotron .btn {
  text-shadow: none;
}
.main-jumbotron:before {
  display: block;
  position: absolute;
  content: " ";
  background: #000;
  opacity: 0.2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.test-border { border-style: solid; border-color: coral;}

/* Welcome */
.welcome-block {
  margin-bottom: 20px;
  color: black;
}
.welcome-logo {
  float:left;
  width:100px;
  border: 0 #000;
}
.welcome-title {
	color: #14BAD0;
}
.welcome-text {
  padding-left: 120px; /* To clear the logo floating on left */
  font-size: 16px;
  color: black;
}
@media (min-width: 768px) {
  .welcome-text {
    font-size: 21px;
  }
}

.text-block {
  margin-bottom: 20px;
  color: black;
}

.normal-text {
  font-size: 16px;
  color: black;

}

.btn {
  font-weight: 700;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.55;
  border-radius: 0;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
}

.btn-blue {
    background-color: white; /* Button background color */
    color: #14BAD0; /* Button text color */
    border: 1px solid #14BAD0;
}

.btn-blue:hover {
    background-color: #14BAD0;
    color: white;
}

.home-down-arrow {
  display: block;
  width:600px;
  height:400px;
  text-align:center;
  margin-left: auto;
  margin-right: auto;
  vertical-align: bottom;
  padding-top: 150px;
}

/* Article Summaries */

.background-gray-lightest {
  background: #f7f7f7; /* Article summary panel background color...should this be white */
}
.post {
  margin-bottom: 60px;
}
.post h3 a {
  color: #14BAD0; /* Article title text color */
}
.post .image {
  margin-top: 60px;
  margin-bottom: 20px;
  overflow: hidden;
}
.post .image img {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.post__intro {
  color: black;
}
@media (max-width: 767px) {
  .post .image img.img-responsive {
    min-width: 100%;
  }
}


/* Lead Article */
.keepleft {
	/* Used to force text blocks over to left margin edge */
	margin-left:-15px;
}

/* Special Buttons */

.btn {
  font-weight: 700;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.55;
  border-radius: 0;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  cursor: pointer;
}

.btn-blue {
    background-color: white; /* Button background color */
    color: #14BAD0; /* Button text color */
    border: 1px solid #14BAD0;
}

.btn-blue:hover {
    background-color: #14BAD0;
    color: white;
}

.btn-red {
    background-color: #D9002F; /* Button background color */
    color: white; /* Button text color */
    border: 1px solid #D9002F;
}

.btn-red:hover {
    background-color: black;
    color: white;
}

/* Line below headings */
.heading {
  margin-bottom: 20px;
}
.heading:after {
  content: " ";
  display: block;
  width: 150px;
  height: 1px;
  margin: 10px 0 20px;
  background: #2b90d9; /* Not used */
}

/* Footer */
.footer__block {
  background: black; /* Footer panel bkgnd color, except 10-pixel border */
  padding: 80px 0;
}
.footer__block .heading:after {
  background-color: #333333; /* Lines below footer headings */
}
.footer__block h4 {
  font-size: 18px;
  font-weight: bold;
  color: white; /* Footer headings text color */
}
.footer__block h5 {
  color: white; /* Footer heading subhead text color */
}
.footer__block ul {
  padding-left: 0;
  list-style: none;
}
.footer__block ul li {
  margin-bottom: 2px;
}
.footer__block ul a {
  color: white; /* Footer submenu links text color */
  margin-bottom: 2px;
}
.footer__block ul a:hover {
  color: #4d4d4d; /* Footer submenu links text color rollover */
  text-decoration: none;
}
.footer__block p {
  color: white; /* Footer body text */
}
.footer__block p a {
  color: #333333; /* Not Used */
}
@media (min-width: 992px) {
  .footer__block .row {
    margin-bottom: 40px;
  }
}
.footer__block p.social {
  text-align: left;
}
.footer__copyright {
  background: #333333;
  color: #ccc;
  padding: 20px 0;
  font-size: 12px;
  line-height: 28px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}
.footer__copyright p {
  margin: 0;
}

/* Social Media Icons */
.fa {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.fa:hover {
    opacity: 0.7;
}
.fa-facebook {
  background: #3B5998;
  color: white;
}
.fa-twitter {
  background: #55ACEE;
  color: white;
}
.fa-instagram {
  background: #125688;
  color: white;
}
.fa-snapchat-ghost {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

/* Remove the navbar's default margin-bottom and rounded borders */
.navbar {
  margin-bottom: 0;
  border-radius: 0;
}

/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
.row.content {height: 450px}

/* Set gray background color and 100% height */
.sidenav {
  padding-top: 20px;
  background-color: #ffa5a5; /* gray is #f1f1f1; */
  height: 100%;
}

/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
  .sidenav {
	height: auto;
	padding: 15px;
  }
  .row.content {height:auto;}
}
/* Video in a DIV */
.header-unit {
  height: 230px;
  border: 0 #000;
  position: relative;
  padding: 20px;
}
#video-container {
	position: absolute;
}
#video-container {
	top:0%;
	left:0%;
	height:100%;
	width:100%;
	overflow: hidden;
}
video {
	position:absolute;
	z-index:0;
}
video.fillWidth {
	width: 100%;

}
