#Header
{
    width: 100%;
    height: 110px;
    box-shadow: 0px 2px 10px #888888;
    position: fixed;
    background-color: white;
    z-index:999;
}

#Header-container
{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index:999;
}

#Header-container-navigation
{
    width: 20%;
    height: 100%;
    float: right;
    margin-right: 5%;
}

#Header-container-navigation li
{
    list-style-type: none;
    height: 100%;
    float: left;
    width: 50%;
    text-align: center;
    line-height: 100px;
}

#Header-container-navigation li:hover
{
    background-color: grey;
    cursor: pointer;
}

#Header-container-navigation span
{
    border-bottom: 2px solid #d9374e;
    padding-bottom: 8px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8984211rem;
}

#Header-container img
{
    width: 10%;
    height: 100%;
    margin-left: 5%;
}

#TopnavImage:hover
{
    cursor: pointer;
}

#Logo:hover
{
    cursor: pointer;
}

@media screen and (max-width: 2000px) and (min-width: 450px) 
{
#myTopnav img
{   
    width: 12.5%;
    height: 20%;
}
}

/* Add a black background color to the top navigation */
.topnav {
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a 
{
    float: left;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    float: right;
    height: 113px;
    width: 15%;
    background-image: linear-gradient(red, red), linear-gradient(white, white);
    background-size: 0 5px, auto;
    background-repeat: no-repeat;
    background-position: center bottom;
    transition: all .3s ease-out;
}

.topnav a:hover
{
    cursor: pointer;
    /* The following line makes the underline only as wide as the text */
    /* background-size: calc(100% - 2em) 5px, auto; */
    background-size: 100% 5px, auto;
}

.topnav a p
{
    height: 100%;
    line-height: 113px;
    font-size: 30px;
    color: black;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add an active class to highlight the current page */
.active {
    background-color: #4CAF50;
    color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

