.header-container {
    margin: auto;
    width: 1025px;
    background-color: #007db8;
}

.header-parent {
    background-color: #007db8;
    box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 1);
    
    /* Fixes problem on browsers without ad blockers, where the header
       would not be at the top of the page. */
    position: absolute;
    width: 100%;
    top: 0px;
}

/* The logo parent div */
.header-logo {
    display: inline-block;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 10px;
    
    text-align: center;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 85%;
    font-weight: normal;
    color: white;
    
    text-decoration: none;
}

/* The Noblitt & Rueland Logo */
.header-logo__name {
    margin-bottom: 3px;
    
    font-family: Times New Roman;
    font-size: 250%;
    font-weight: bold;
    
    color: #004cff;
    background: white;
    
    border-radius: 40px;
    border: 4px solid black;
}

/*
.menu-icon {
    display: none;
}
*/

.header-nav {
    display: inline-block;
    float: right;
}

.header-nav__titles {
    list-style-type: none;
    
    margin: 0;
    padding: 0;
    overflow: hidden;
    
    color: white;
    background-color: #007db8;
}

.header-nav__titles li {
    float: left;
}

/* The header section names. */
.header-nav__titles li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: normal;
    padding: 27px 17px;
    text-decoration: none;
}

/* Hovering colors. */
.header-nav__titles li a:hover, .dropdown:hover .dropbtn {
    background-color: #12394c;
    color: white;
}

.header-nav__titles li .dropdown {
    display: inline-block;
}

/* The dropdown div. */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #007db8;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* The links in the dropdown divs. */
.dropdown-content a {
    color: black;
    padding: 12px 16px !important;
    text-decoration: none;
    display: block !important;
    text-align: left !important;
    font-weight: normal !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.sub-dropdown {
    padding: 0px;
}

.sub-dropdown-content {
    display: none !important;
    position: absolute;
    top: 0px !important;
    left: 100% !important;
    min-width: 425px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
}

.sub-dropdown:hover .sub-dropdown-content {
    display: block !important;
}
