/* Required height of parents of the Full Page Intro and Intro itself */
html,
body,
.view {
    height: 100%;
}

/* Navbar animation */
.navbar {
    background-color: rgba(0, 0, 0, 0.2);
}

.top-nav-collapse {
    background-color: #1C2331;
}

.white-text, .text-white {
    color: #eee !important;
}

/* Adding color to the Navbar on mobile */
@media only screen and (max-width: 768px) {
    .navbar {
        background-color: #1C2331;
    }
}
.navbar.navbar-dark .breadcrumb .nav-item.active > .nav-link, .navbar.navbar-dark .navbar-nav .nav-item.active > .nav-link {
    background-color: #ff5722 !important;
}
.img-thumbnail {
    padding: 0;
    background-color: none;
    border: 1px solid #dee2e6;
    border-radius: .25rem;

/* Footer color for sake of consistency with Navbar */
.page-footer {
    background-color: #1C2331;
}