  :root {
    --primary-site-color: #1D417E;
    --primary-site-color-hover: #122850;
    --secondary-site-color: #000000;
    --tertiary-site-color: #ffffff;
    
    --cta-site-color: #f58220;
    --cta-site-color-hover: #cb7020;
}

/* Header Topics Bar */
.header-topics-bar {
    display:flex;
    justify-content:space-between;
    padding: 1rem 0rem;
}

.header-topics-bar a {
    color: #e3e3e3;
    text-decoration: none;
    white-space:nowrap;
    transition: 0.25s;
}

.header-topics-bar a:hover {
    color: #818181 !important;
}

.primary-navigation-bar-unordered-list {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

/* Header Buttons */
.header-button {
    padding: 0.25rem 1rem;
    color: white;
    border-radius: 3px;
    font-size: 1.25rem;
    text-decoration: none !important;
    font-weight: bold;
    white-space: nowrap;
}

/* Subscribe button */
.subscribe-button-header {
    background-color: var(--cta-site-color);
}

.subscribe-button-header:hover {
    background-color: var(--cta-site-color-hover);
    color: white;
}

.subscribe-button-header:active,
.subscribe-button-header:focus {
    background-color: var(--cta-site-color);
    color: white;
}

/* Login button */
.login-button-header {
    background-color: var(--primary-site-color);
}

.login-button-header:hover {
    background-color: var(--primary-site-color-hover);
    color: white;
}

.login-button-header:active,
.login-button-header:focus {
    background-color: var(--primary-site-color);
    color: white;
}

/* Navigation Drawer Styles */
.navigation-drawer {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 999; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: black; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 2rem;
    transition: 0.3s; /* 0.3 second transition effect to slide in the sidenav */

    /* Hide Scrollbars */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.navigation-drawer::-webkit-scrollbar {
    display: none;
}

.navigation-drawer-list {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 1rem 1rem 100px 1rem;
}

.navigation-drawer-list .sub-menu {
    list-style-type: none;
    max-height: 0;
    overflow: hidden;
    transition: 0.75s;
    padding: 0 0 0 2rem;
}

.menu-item-has-children:hover .sub-menu {
    max-height: 1000px;
}

/* The navigation menu links */
.navigation-drawer a {
    padding: 1rem 1rem 1rem 2rem;
    text-decoration: none;
    font-size: 1.5rem;
    color: #e3e3e3;
    display: block;
    transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.navigation-drawer a:hover {
    color: #818181;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.body-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 996;
    transition: 0.5s;
}

.primary-navigation-sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: black;
    min-width: 200px;
    list-style: none;
    padding: 1rem 2rem;
}

.primary-navigation-sub-menu li {
    padding: 0.5rem 0;
}

.primary-navigation-has-children {
    position: relative;
}

.primary-navigation-has-children:hover > .primary-navigation-sub-menu {
    display: block !important;
}

/* Media Queries */
@media (max-width: 1200px) {
    .masthead-container {
        padding: 1rem 0 !important;
    }

    .masthead-content {
        display: none !important;
    }

    .hide-social-links {
        display: none !important;
    }

    .masthead-row {
        border-bottom: 1px solid #e0e0e0;
        margin: 2rem auto 0 auto;
    }
}

@media (max-width:992px) {
    .header-topics-bar {
        display: none !important;
    }
}

@media (max-width:768px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width:768px) {
    .mobile-only {
        display: none !important;
    }
}