.root-header{
    text-align: center;
    font-family: "Nunito Sans","Open Sans","Helvetica Neue",sans-serif;
    font-weight: bold;
    color: black;
}

.root-header-banners{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: white;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
}

.root-header-banner-left{
    display: flex;
    align-items: center;
}

.root-header-banner-right{
    display: flex;
    align-items: center;
}

.root-header-hyperlinks{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: white;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 0.8em;
    padding-top: 10px;
    padding-bottom: 10px;
}

.root-header-hyperlinks-left{
    display: grid;
    column-gap: 8px;
    white-space: nowrap;
    grid-template-columns: 1.2fr 2.2fr 2.7fr 2fr;
    padding-right: 5px;
}

.root-header-hyperlinks-right{
    display: grid;
    column-gap: 5px;
    white-space: nowrap;
    grid-template-columns: 1.7fr 1.1fr 1.7fr;
    padding-left: 5px;
}

.root-header-link-pointer{
    padding-left: 0px;
    padding-right: 0px;
    text-shadow: 1px 1px rgb(241, 243, 245);
    font-size: 1.1em;
    color: navy;
    text-decoration: none;
}

.root-header-link-pointer:hover{
    background-color: rgb(231, 229, 229);
    cursor: pointer;
}

.root-header-link-arrow{
    padding-left: 5px;
    padding-right: 5px;
    text-shadow: 1px 1px rgb(241, 243, 245);
    font-size: 1.1em;
    color: navy;
    text-decoration: none;
}

.root-header-link-arrow:hover{
    background-color: rgb(231, 229, 229);
    cursor: default;
}

.root-header-dropdown{
    position: relative;
    display: inline-block;
}

.root-header-dropdown-content{
    display: none;
    position: absolute;
    background-color: #e9e9e9;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    grid-template-columns: repeat(3, 1fr); /* Adjust the number of columns as needed */
    grid-gap: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid black;
}

.root-header-dropdown:hover .root-header-dropdown-content{
    display: grid;
}

.root-header-dropdown-content-single-column{
    display: none;
    position: absolute;
    background-color: #e9e9e9;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    grid-template-columns: repeat(1, 1fr); /* Adjust the number of columns as needed */
    grid-gap: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid black;
}

.root-header-dropdown:hover .root-header-dropdown-content-single-column{
    display: grid;
}

.root-header-dropdown-header{
    padding-top: 5px;
    padding-bottom: 10px;
    white-space: nowrap;
    text-align: left;
    font-size: 1.2em;
    text-decoration: underline;
    cursor: default;
}

.root-header-dropdown-header-blank{
    padding-top: 5px;
    padding-bottom: 10px;
    white-space: nowrap;
    text-align: left;
    font-size: 1.2em;
    text-decoration: none;
    cursor: default;
}

.root-header-dropdown-link{
    font-weight: normal;
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
    font-size: 1.1em;
    padding-top: 3px; 
    padding-bottom: 3px; 
}

.root-header-dropdown-link:hover{
    background-color: rgb(215, 215, 215);
    /*background-color: rgb(231, 229, 229);*/
    cursor: pointer;
}

.root-header-dropdown-link-blank{
    font-weight: normal;
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
    /*font-size: 1.1em;*/
    /*padding-top: 3px;*/
    /*padding-bottom: 3px;*/
    font-size: 0.2em;
    padding-top: 1px;
    padding-bottom: 1px;
}

.root-header-dropdown-link-text{
    font-weight: normal;
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
    font-size: 1.1em;
    padding-top: 3px;
    padding-bottom: 3px;
}

.root-header-dropdown-link-text-bold{
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
    font-size: 1.1em;
    padding-top: 3px;
    padding-bottom: 3px;
}

.root-header-dropdown-link-text-italic{
    font-weight: normal;
    font-style: italic;
    text-decoration: none;
    white-space: nowrap;
    text-align: left;
    font-size: 1.1em;
    padding-top: 3px;
    padding-bottom: 3px;
}

.root-header-split-banner{
    padding-top: 4px;
    background-image: linear-gradient(to right, rgb(36, 90, 165), rgb(59, 188, 240))
}

.blank-row-10px{
    background-color: white;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 10px;
}

