#header_menu {
    /*border: solid 1px red;*/
}
#header_menu_container {
    width: 100%;
    margin: 10px 0;
    display: flex;
    justify-content: center;
}
#header_menu_content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /*border: solid 1px blue;*/
}
#header_menu_nav_image img {
    margin-top: 5px;
    width: 100px;
    /*border: solid 1px blue;*/
}
#header_menu_nav {
    padding: 15px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /*border: solid 1px red;*/
}
#header_menu_nav_options {
    margin-left: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    /*border: solid 1px green;*/
}
.header_menu_nav_option {
    margin-left: 20px;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: none;
    color: #707070;
}

@media (min-width: 576px) {
}
@media (min-width: 635px) {
    .header_menu_nav_option {
        font-weight: 700;
        font-size: 1.2rem;
    }
}
@media (min-width: 768px) {
    .header_menu_nav_option {
        margin-left: 45px;
        font-weight: 700;
        font-size: 1.5rem;
    }
}
@media (min-width: 900px) {
    #header_menu_content {
        width: 85%;
    }
    #header_menu_nav_options {
        margin-left: 0;
    }
}
@media (min-width: 1200px) {
}