@charset "utf-8";
/* CSS Document */

.nav-fixed {
  position: sticky;
  top: 8rem;
  right:0;
  width:100%;
  padding: 0;
  margin: 0;
  z-index:9999;
  background-color: #000;
}
  
#menu {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#menu:after {
    content: "";
    display: table;
    clear: both;
}

#menu ul {
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

#menu ul li {
    font-size: 1rem;
    padding:0;
    margin: 0; 
    line-height: 3rem;
    display: inline-block;
   
}

#menu ul li:last-child{border-bottom: 2px solid #000;}

#menu ul li a {
    display: block;
    padding: 0 24px;
    color: #fff;
    font-family: sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

#menu ul li:hover > a {color: #000; background-color: #fff;}

#menu li a:only-child:after,
#menu ul li ul li a:only-child:after {
    content: '';
    margin-right: 1rem;
}
 
#menu label,#menu [id^=drop] {
    display: none;
}


@media screen and (max-width:480px) {
    .nav-fixed {
        top:9rem;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767.99px) {
    .nav-fixed {
        top: 12rem;
    } 
}

@media only screen and (min-width: 768px) and (max-width: 991.99px) {
    .nav-fixed {
        top: 6rem;
    } 
}

@media only screen and (min-width: 992px) and (max-width: 1199.99px) {
    .nav-fixed {
        top: 8rem;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .nav-fixed {
        top: 10rem;
    }
}

@media only screen and (min-width: 992px) {
    #menu ul li:last-child{
        border-bottom: 0;
    }
}

@media only screen and (min-width: 1400px) {
    .nav-fixed {
        top: 11rem;
    }
}



  
  
@media screen and (max-width:991.99px) {
    .wrapper{
        width: 100%;
        padding:0;
        margin: 0 auto;
    }

    label {
        width: 100%;
    }

    #navbrand {
        display: inline-block;
        padding: 0;
        width: 80%;
        line-height: 6rem;
        text-align: center;
    }
    #menu {
        margin: 0;
        padding: 0;
        background: none;
        width: 100%;
    }
    #menu ul {
        float: none;
        width: 100%;
        padding-top:0;
    }
    #menu ul li {
        background-color: black;
        display: block;
        width: 100%;
        float: left;
    }

    #menu ul li {border-bottom: 1px solid #fff;}
    #menu ul li:first-child {border-top: 1px solid #fff;}
  
  
    #menu ul ul li:hover > ul,
    #menu ul li:hover > ul,.menu {
        display: none;
    }

    #menu .toggle + a {
        display: none!important;
    }

    #menu [id^=drop]:checked + ul {
        display: block;
    }
    
    #menu .toggle {
        font-size: 2.8rem;
        position:relative;
        width:2.4rem;
        color:#fff;
        display: inline-block;
        line-height: 4.6rem;
        cursor:pointer;
        font-weight: 400;
        letter-spacing: 1px;
        text-decoration: none;
        text-align: center;
        width: 100%;
    }
    
    #menu ul li .toggle{
        padding: 0 0 0 15px;
        line-height: 6rem;
    }

    #menu ul li:hover > .toggle{
        color:white;
    }
    
    #menu ul a {
        padding: 0 0 0 15px;
        line-height: 3rem;
        font-size: 1rem;
        color: white;
    }

    #menu ul li a{
        color:white;
        display: block;
    }

    #menu ul li a:hover {
        color: #000;
    }
    
}
  



