html, body{
  height: 100%;
}

body { 
	font-family: 'Hind', sans-serif;
	background-position: center center;
	background-repeat:  no-repeat;
	background-attachment: fixed;
	background-size:  cover;
  background-color: black;
  
	
}

.navbar-default {
		  font-family: 'Montserrat', sans-serif;
      letter-spacing: 2px;
      border:none;
      background-color: transparent;
      font-size: 10px;

}
/* home-link (brand) text-color */
  .navbar-default .navbar-brand {
     color: black;
     border:none;
  }

   /* home-link (brand) text/hover color */
  .navbar-default .navbar-brand:hover,
  .navbar-default .navbar-brand:focus {
      color: #ffffff;
      background-color: #f16623;
      transition: 0.5s;
  }

   /* other links, text-color */
  .navbar-default .navbar-nav > li > a {
    color: white;
  }

    /* other links text/hover & background/hover colors */
  .navbar-default .navbar-nav > li > a:hover,
  .navbar-default .navbar-nav > li > a:focus {
    color: white;
    background-color: #f16623;
    transition: 0.5s;

  }

.navbar .navbar-nav {
    display: inline-block;
    float: none;
        background-color: none;

}

.navbar .navbar-collapse {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.footer {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  color: white;
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  padding: 1rem;
  text-align: center;
}

/* The only rule that matters */
#video-background {
/*  making the video fullscreen  */
  position: fixed;
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: -1;
}

.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
    &::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba($gray-base, .5);
        z-index: 1;
    }
}

.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    height: 300%;
    top: -100%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    width: 300%;
    left: -100%;
  }
}

@media (max-width: 767px) {
  .fullscreen-bg {
    background: url('jettco_background.jpg') center center / cover no-repeat;
    @include background-size(cover);
  }

  .fullscreen-bg__video {
    display: none;
  }
}
