@media only screen and (min-width: 1200px) {
    #nav-main {
        position: absolute;
        right: 145px;
        top: 86px;
    }

    #nav-main li {
        float: left;
        margin-left: 18px;
    }

    #nav-main a {
        font-size: 16px;
        font-weight: bold;
        color: #383a37;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    nav.main-menu .closebtn {
        display: none;
        visibility: hidden;
    }
    .openNav{
        display: none;
        visibility: hidden;
    }
}
@media only screen and (max-width: 1199px) {
    nav.main-menu {
        height: 100%;
        width: 270px;
        position: fixed;
        z-index: 2;
        top: 0;
        right: -290px;
        background: rgb(58,41,30);
        background: -moz-linear-gradient(90deg, rgba(58,41,30,1) 0%, rgba(34,22,14,1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(58,41,30,1) 0%, rgba(34,22,14,1) 100%);
        background: linear-gradient(90deg, rgba(58,41,30,1) 0%, rgba(34,22,14,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3a291e",endColorstr="#22160e",GradientType=1);
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
        box-shadow: -1px 0 15px 0 rgba(34,22,14,.8)
    }
    nav.main-menu > ul > li {
        padding: 0 20px 10px;
        margin-bottom: 15px;
        position: relative;
    }
    nav.main-menu > ul > li > a {
        text-decoration: none;
        color: #fcfcf5;
        font-size: 11px;
        font-size: 1.1rem;
        text-transform: uppercase;
    }
    nav.main-menu > ul > li > a:hover,
    nav.main-menu > ul > li > a:focus {
        border-bottom: 1px solid #fff;
    }
    nav.main-menu .closebtn {
        position: absolute;
        top: 0;
        right: 15px;
        font-size: 50px;
        color: #fff;
        font-weight: 100;
    }
    .openNav{
        position: absolute;
        display: block;
        font-size: 0;
        right: 90px;
        top: 35px;
        cursor: pointer;
        padding: 1px 7px 3px;
        border-radius: 2px;
        z-index: 2;
    }
    .openNav:before {
        content: '\2630';
        font-size: 20px;
        font-weight: 100;
        color: rgba(58,41,30,1);
    }
}