:root {
    --primary-color: #25537c;
    --primary-color-light: #bcd1f3;
    --primary-color-dark: #163149;
    --secondary-color: #f28a10;
    --secondary-color-light: #F5B56A;
    --background-color-light: #F3CFA5;
    --text-color: #333;
    --text-color-light: #707070;
}

html,body,p,div,h1,h2,h3,h4,h5,h6,img,pre,form,fieldset {
    margin: 0;
    padding: 0
}


ul,ol,dl {
    margin: 0
}

img,fieldset {
    border: 0
}

@-moz-document url-prefix() {
    img {
        font-size: 0
    }

    img:-moz-broken {
        font-size: inherit
    }
}

details,main,summary {
    display: block
}

audio,canvas,progress,video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden],template {
    display: none
}

input[type="button"],input[type="submit"],input[type="reset"] {
    -webkit-appearance: button
}

body {
    color: var(--text-color);
    font-family: "Quattrocento Sans",Arial,sans-serif;
    font-size: 14px;
    line-height: 1.42857142857143
}

p,ul,ol,dl,h1,h2,h3,h4,h5,h6,blockquote,pre {
    margin: 10px 0 0 0
}

p:first-child,ul:first-child,ol:first-child,dl:first-child,h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child,blockquote:first-child,pre:first-child {
    margin-top: 0
}

h2 {
    color: var(--text-color);
    font-size: 24px;
    font-weight: normal;
    line-height: 1.25;
    text-transform: none;
    margin: 30px 0 0 0
}

h3 {
    color: var(--text-color);
    font-size: 20px;
    font-weight: normal;
    line-height: 1.5;
    text-transform: none;
    margin: 30px 0 0 0
}

h4 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.25;
    text-transform: none;
    margin: 20px 0 0 0
}

h5 {
    color: var(--text-color);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.42857143;
    text-transform: none;
    margin: 20px 0 0 0
}

h6 {
    color: var(--text-color-light);
    font-size: 12px;
    font-weight: bold;
    line-height: 1.66666667;
    text-transform: uppercase;
    margin: 20px 0 0 0
}

h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child {
    margin-top: 0
}

h1+h2,h2+h3,h3+h4,h4+h5,h5+h6 {
    margin-top: 10px
}

small {
    color: var(--text-color-light);
    font-size: 12px;
    line-height: 1.33333333333333
}

code,kbd {
    font-family: monospace
}

var,address,dfn,cite {
    font-style: italic
}

cite:before {
    content: "\2014 \2009"
}

blockquote {
    border-left: 1px solid #ccc;
    color: var(--text-color-light);
    margin-left: 19px;
    padding: 10px 20px
}

blockquote>cite {
    display: block;
    margin-top: 10px
}

q {
    color: var(--text-color-light);
}

q:before {
    content: open-quote
}

q:after {
    content: close-quote
}

abbr {
    border-bottom: 1px var(--text-color-light) dotted;
    cursor: help
}

table .divider{
    border-top: 2px solid var(--secondary-color-light);
}

.card-body {
    padding: 1em !important;
    font-size: 1em !important;
    color: var(--text-color) !important;
    margin: 0 !important;
}

.page-title-block
{
    background-color: var(--primary-color);
    color: #fff;
}
.page-title-divider
{
    border-bottom: solid 1px var(--primary-color);
    height: 1em;
    width: 100%;
    margin-bottom: 1em;
}

.bg-primary
{
    background-color: var(--primary-color) !important;
    color: #fff;
}

.float-right
{
    float: right;
}

.float-left
{
    float: left;
}

.page-content {
    min-width: 80%;
    width: 100%;
}

.content-header {
    padding: 1em 1em 1em 2em;
    height: 100%;
    place-content: center;
}

.content-header h2 {
    font-size: 1.5em;
    font-weight: 600;
    color: #fff;
    vertical-align: middle;
}

.login-header {
    padding: 1em 1em 1em 1em;
    text-align: center;
}

.login-header a {
    color: #fff;
}

/* Navigation */
.nav-item {
    background: #fff;
    color: var(--primary-color-dark);
    font-size: 1.2em;
    font-weight: 600;
    padding: 0 0 1em 0;
}

.menu {
    width: 20%;
    min-width: 10%;
}

.sub-menu {
    font-size: 0.8em;
    font-weight: 300;
    padding-left: 2em;
}

.sub-menu.nav-link {
    background-color: transparent; /* or whatever the default background is */
    color: inherit; /* or whatever the default color is */
    transition: background-color 0.6s ease, color 0.6s ease;
}

.sub-menu.nav-link:hover {
    background: var(--secondary-color);
    color: #fff !important;
}

.nav-item:hover {
    background: var(--primary-color);

    .nav-link {
        color: #fff;
    }
    .home-icon {
        color: #fff;
    }
}

.nav-home {
    background: var(--primary-color);
}

.home-icon {
    color: #fff;
}

.footer {
    background: var(--primary-color);
    margin-top: 2em;
    padding: 1em 0 1em 0;
    text-align: center;
}

.footer p {
    color: #fff;
    font-size: 1em;
}