.posicion {
    position: fixed;
    top: 60px;
    z-index: 5;
    display: flex;
    width: 100%;
    margin-right: -5px;
}

.lalo {
    margin-top: -150px;
}

@media (max-width: 30em) {
    .lalo {
        margin-top: 0px;
    }
}


.logo {
    padding-left: 20px;

}

.imagen-menu {
       height: 35px;
    width: auto;
    transition: all 0.3s;
}

a.menu-enlace {
    padding: 2px;
}


.header{
    background-color:rgba(0, 0, 0, 0.0);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 85px;
    padding: 5px ;

}

.header .logo{
    cursor: pointer;
    margin-right: auto;
}

.header .logo img{
    height: 35px;
    width: auto;
    transition: all 0.3s;
}

.header .logo img:hover{
    transform: scale(1.2);
}

.header .nav-links{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    border-radius: 20px !important;
    padding: 5px;
}

.header .nav-links li{
    display: inline-block;
    padding: 0 px;    
}

.header .nav-links li:hover,
/**/.overlay a:hover{
    transform: scale(1.1);
}

.header .nav-links a{
    font-size: 700;
    color: #eceff1; 
}

.header .nav-links a:hover{
    color: #ffbc0e;
}

/**/.menu {
    display:none;
}

.header .btn button,
/**/.header .menu button{
    margin-left: 20px;
    font-weight: 700;
    color: #fff;
    padding: 9px 25px;
    background: #00a2d4;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}

.header .btn button:hover,
/**/.header .menu button:hover{
    background-color: #e2f1f8;
    color: #ffbc0e;
    transform: scale(1.1);
}


/**/@media screen and (max-width: 800px){
    .nav-links, .btn {
        display: none;
    }
    .menu {
        display: inherit;
    }
}



/*Nav Mobile*/

.header a{
    text-decoration: none;  
    /*borramos el que teniamos en .header .nav-links a*/ 
}

.header .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 4;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

.header .overlay .overlay-content{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;    
}

.header .overlay a{
    padding: 0px;
    font-size: 36px;
    display: block;
    transition: all 0.3s ease 0s;
    font-weight: 700;
    color: #000;
}

.header .overlay a:hover, 
.header .overlay a:focus{
    color: #ffbc0e;
}

.header .overlay .close{
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 65px;
}

@media screen and (max-height:450px) {
    .header .overlay a{
        font-size: 20px;
    }
    .header .overlay .close{
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}