.nav-menu {
    background-color: transparent;
    color: #fff;
    padding: 5px;
    text-align: center;
    position: absolute;
    top: 3em;
    z-index: 2;
    display: inline-flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    /* margin-left:-1em; */
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: .5em 1em;
    display: inline-block
}

.nav-menu a:hover {
    font-weight: bold;
    color: #bbd034
}

.font {
    font-family: 'UnimedSans-RgIt';
    color: #fff;
    font-size: 1.3em;
}

.logo img {
    width: 10em;
    margin-left: 1em
}

.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: .4s
}

.nav-menu.responsive {
    position: relative
}

.nav-menu.responsive .hamburger {
    display: block
}

.nav-menu.responsive a {
    display: block;
    text-align: left
}
