.gov_header {
    width: 100%;
    height: 24px;
    display: flex;
}

.gov_header_logo {
    width: 20%;
    height: 24px;
    padding: 4px;
    background: #3366cc;
    text-align: right;
}
.gov_header_logo > a {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.gov_header_logo > a > img{
    width: auto;
    height: 14px;
}

.gov_header_container {
    height: 24px;
    display: flex;
    align-items: center;
    flex: 1;
    background: #E5EEFB;
}

.gov_header_message {
    flex: 1;
    padding-left: 12px;
    font-family: 'Montserrat'!important;
    font-size: 11px!important;
    color: #000;
}

.gov_header_options {
    flex: 1;
}

.gov_header_nav {
    list-style: none;
    display: flex;
    margin: 0;
}

.gov_header_nav > li > a {
    display: list-item;
    text-decoration: none;
    text-transform: uppercase;
    color: #0B457F;
    padding: 0px 12px;
    background: transparent;
    
    font-family: 'Montserrat'!important;
    font-size: 11px!important;
}

.gov_header_nav > li > a.active, .gov_header_nav > li > a:hover {
    font-weight: 600!important;
}


@media (max-width: 768px) {
    .gov_header_active_msg_1 {
        display: none!important;
    }
    .gov_header_active_msg_2 {
        display: block!important;
    }
    .gov_header_active_msg_3 {
        display: none!important;
    }
    .gov_header_options {
        display: none;
    }
}

@media (min-width: 768px) {
    .gov_header_active_msg_1 {
        display: none!important;
    }
    .gov_header_active_msg_2 {
        display: none!important;
    }
    .gov_header_active_msg_3 {
        display: block!important;
    }
    .gov_header_message {
        flex: none;
        margin-right: 16px;
    }
    .gov_header_options {
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .gov_header_active_msg_1 {
        display: block!important;
    }
    .gov_header_active_msg_2 {
        display: none!important;
    }
    .gov_header_active_msg_3 {
        display: none!important;
    }
    .gov_header_message {
        flex: 1;
        margin-right: 16px;
    }
    .gov_header_options {
        display: flex;
        justify-content: flex-start;
    }
}
