
.hamburger {
    background: none;
    background-color: var(--main-red);
    border-radius: 2px;
    position: fixed;
    top: 15px;
    left: 15px;
    line-height: 45px;
    padding: 5px 15px 0px 15px;
    color: #fff;
    border: 0;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    z-index: 10000000000000;
}

.cross {
    background: none;
    position: fixed;
    padding: 3px 15px 0px 15px;
    color: var(--main-off-white-blue);
    border: 0;
    top:14px;
    left:8px;
    font-size: 3em;
    line-height: 65px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    z-index: 10000000000000;
}

.menu {
    display: none;
    z-index: 1000000;
    font-weight: bold;
    font-size: 1em;
    width: 100%;
    background: var(--main-red);
    color: var(--main-off-white-blue);
    position: fixed;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.05em;
    font-family: 'ProximaBold', serif;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
}

.menu li {
    display: block;
    padding: 25px 0 25px 0;
    border-bottom: #dddddd 1px solid;
}

.menu li:hover {
    display: block;
    background: #f48989;
    padding: 25px 0 25px 0;
    border-bottom: #dddddd 1px solid;
}

.menu ul li a {
    text-decoration: none;
    margin: 0px;
    color: var(--main-off-white-blue);
}

.menu ul li a:hover {
    color: #f48989;
    text-decoration: none;
}

.menu a {
    text-decoration: none;
    color: var(--main-off-white-blue);
}

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

.glyphicon-home {
    color: white;
    font-size: 1.5em;
    margin-top: 5px;
    margin: 0 auto;
}
@media only screen and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
    
    .hamburger{
        border-radius: 0px;
        top:0px;
        left:0px;
    }
    .cross{
    }
}




