
.nav-main {
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: none;
}

.nav-main a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    display: block;
    width: auto;
    height: 50px; 
    margin-bottom: 2px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.nav-main a:hover {
    text-decoration: none;
    color: #7e021d;
    background-image: none;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.list-inline-item:not(:last-child) {
    margin-right: auto;
}
.list-inline {
    padding-left: auto;
    list-style: none;
}
.list-inline-item {
    display: block;
    text-align: center;
}
#hamburger{
    display: block;
    position: absolute;
    z-index: 300;
    top:10px;
    left:10px
}


@media (min-width: 1200px) {

    .nav-main {
        margin-bottom: -5px;
        font-size: 1.2rem;
        display: block;
    }

    .nav-main a {
        background-image: url("../../assets/img/nav-main.png");
        background-position: center bottom;
        background-repeat: no-repeat;
    }

    .nav-main a:hover {
        background-image: url("../../assets/img/nav-main-hover.png");
    }

    .list-inline-item:not(:last-child) {
        margin-right: 3rem;
    }
    .list-inline {
        padding-left: 0;
        list-style: none;
    }
    .list-inline-item {
        display: inline-block;
        text-align: left;
    }
    #hamburger{
        display: none;
    }
}
