.menu {
    float: left;
    background-color: #963534;
    padding: 0;
    margin-left: -2px;
    margin-bottom: 0;
    overflow: hidden;
    min-height: 0;
}

@media (max-width: 768px) {
    .menu {
        height: 0px;
    }
}

#hamburger {
    width: 100%;
    margin-left: -2px;
    background-color: #963534;
    color: white;
    font-size: 20px;
    line-height: 40px;
    padding-left: 10px;
    box-sizing: border-box;
    cursor: pointer;
}

#hamburger:hover, .menu-item:hover {
    background-color: #881816;
}

#search-form {
    font-size: 0;
    color: black;
    padding: 10px;
}

#search-form > div:first-of-type {
    width: 80%;
    display: inline-block;
    font-size: 16px;
}

#search-form #form_value {
    width: 100%;
}

#search-submit {
    width: 20%;
    display: inline-block;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    color: white;
}

.menu-item {
    color: white;
    list-style-type: none;
    transition: 0.2s;
}

.menu-item a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 14px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 14px;
    display: block;
}

.menu-item a:hover{
    color: #f5f5f5;
    text-decoration: none;
}

.menu-item a:active{
    color: #f5f5f5;
    text-decoration: none;
}

.menu-item a:visited{
    color: #f5f5f5;
    text-decoration: none;
}

.menu-item > a:hover {
    text-decoration: none;
}

section {
    float: left;
}

.notification {
    display: inline-block;
    margin-left: 5px;
    width: 18px;
    height: 18px;
    color: #881816;
    text-align: center;
    font-weight: bold;
    border-radius: 20px;
    background: #f5f5f5; 
    line-height: 20px;
    vertical-align: top;
    font-size: 12px;
}