nav{
    background: #000;
    height: 100px;
    width: 100%;
    position: fixed;
    z-index: 10;
    
}
.enlace{
    position: absolute;
    padding: 20px 50px;
}

.logo{
    height: 40px;
    
}
nav ul{
    float: right;
    margin-right: 20px;
}
nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}
nav ul li a{
    color: #ffffff;
    font-size: 18px;
    padding: 7px 13px;
    /* border-radius: 3px; */
    text-transform: uppercase;
}
li a.active, li a:hover{
    background: #ff5b25;
    transition: .5s;
}
.checkbtn{
    font-size: 30px;
    color: #fff;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}

