/* Required height of parents of the Half Page Carousel for proper displaying carousel itself */
html,
body,
.view {
height: 100%; }

/* Navbar animation */
.navbar {
  background-color: rgba(0, 0, 0, 0.2); 
}

.top-nav-collapse {
  background-color: #929FBA; 
}

/* Footer color for sake of consistency with Navbar */
.page-footer {
  background-color: #929FBA; 
}

.full-page-intro {
  height: 1000px; 
}

@media (max-width: 740px) {
  .full-page-intro {
    height: 1000px; 
  }
}

@media (min-width: 800px) and (max-width: 850px) {
  .navbar:not(.top-nav-collapse) {
    background: #929FBA !important;
  }
}
  
/* Adding color to the Navbar on mobile */
@media only screen and (max-width: 768px) {
  .navbar {
    background-color: #929FBA;
  } 
}