#navbarHeaderMenuContent ul li a.nav-link {
    color: white;
    font-size: 1.6rem;
    font-weight: 300;
    display: inline;
    position: relative;
    overflow: hidden;
}
#navbarHeaderMenuContent ul li a.nav-link:after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    width: 0;
    bottom: -5px;
    background: #002c53;
    height: 3px;
    transition-property: width;
    transition-duration: 0.5s;
    transition-timing-function: ease-in;
}
#navbarHeaderMenuContent ul li a.nav-link:hover:after {
    left: 0;
    right: auto;
    width: 100%;
    color: #019fb6;
}
#navbarHeaderMenuContent ul li a.nav-link:focus:after {
    left: 0;
    right: auto;
    width: 100%;
      color: #019fb6;
}
#navbarHeaderMenuContent ul li a.nav-link:active:after {
    left: 0;
    right: auto;
    width: 100%;
    color: #019fb6;
}

#mainFooter{
    background-color: #002c53;
}

.footer-widget h3 {
    font-size: 20px;
    color: #d5b177;
    font-weight: 400;
}

.footer-widget ul li a {
    color: white;
}

#footer-copyright {
    border-top-color: #d5b177;
    border-top-style: solid;
    border-top-width: 1px;
    padding-top: 1em;
    margin-top: 1em;
    color: white;
    line-height: 4rem;
}

.maxh-60-px {
    max-height: 60px;
}
