.top-navbar-colors {
    background: linear-gradient(to right, #1E2849, #434B67);
}

.top-navbar-colors .nav-link {
    color: #FCF3E8;
    transition: background-color 0.25s ease, color 0.25s ease;
    border-radius: 6px;

    /* optional, gives a softer look */
    padding: 6px 12px;

    /* improves the hover “button” feel */
}

.top-navbar-colors .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.top-navbar-colors .navbar-brand {
    color: #FCF3E8;
}

.top-navbar-colors .nav-link:focus,
.top-navbar-colors .nav-link.active {
    color: #ffffff;
}

@media (max-width: 991.98px) {
    .top-navbar-colors.navbar-expand-lg.navbar-dark .navbar-nav {
        background: linear-gradient(to right, #1E2849, #434B67);
    }
}

/* Mobile */
.top-navbar-colors .navbar-brand img {
    width: auto;
    max-width: calc(100vw - 85px);
    height: auto;
    display: block;
}

.top-navbar-colors .navbar-brand {
    margin-right: 4px;
}

/* SM and up */
@media (min-width: 576px) {
    .top-navbar-colors .navbar-brand img {
        width: auto;
        max-width: 400px;
    }

    .top-navbar-colors .navbar-brand {
        margin-right: 1rem;
    }
}

/* LG and up */
@media (min-width: 992px) {
    .top-navbar-colors .navbar-brand img {
        max-width: 350px;
    }
}

.theme-dark-blue-color {
    color: #2B244D;
}

.logo-header {
    color: #37306E;
    font-family: 'Cinzel', serif;
}

.logo-background {
    background-color: #2c3871;
}

.logo-header {
    width: 25%;
}

.logo-header img {
    width: 100%;
    min-width: 350px;

    /* adjust to what you want */
    height: auto;
}

.header-dark {
    color: #1c3870;
}

.background-sage {
    background-color: #b7c4bf;
}

.image-home {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-home img {
    display: block;
    width: 100%;
    height: auto;
}

#image-home-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 20%;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4);

    /* example: semi-transparent blue */
    color: #ffffff;
    text-shadow: 6px 6px 10px rgba(0, 0, 0, 1);
}

.image-home-bottom-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.3);
}

.process-note {
    background: #f8f9fa;
    border-left: 4px solid #999;
    padding: 15px 20px;
    margin: 25px 0;
    color: #444;
    font-style: italic;
    border-radius: 4px;
}