body{
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
}
header {
    width: 100%;
    height: 50px;
    background: rgb(70,109,73);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.nombre{
float: left;
margin:20px 0;
font-size: 10px;
}
.numero{
float: right;
margin:20px 0;
font-size: 10px;
}
.numero span {
margin-left:  3px;
}

.logo{
    position: absolute;
    left: 0;
    float: left;
    width: 70px;
    height: 40px;
    margin-left: 5px;
    background: url(../Img/logo-verde.png);
        background-size: cover;
}

/*----Menu----*/
#menu {
    width: 100%;
    height: 50px;
    background: rgba(0,0,0,0);
    color: #fff;
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 200;
}

#menu-bar{
    display: none;
}

#menu label{
    float: right;
    font-size: 28px;
    margin:6px 0;
    cursor: pointer;
    color: rgb(70,109,73);
}

.menu{
    position: absolute;
    top:40px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(70,109,73,0.7);
    transition: all 0.9s;
    transform: translateX(100%);
}
.menu a{
    display: block;
    color: #fff;
    height: 50px;
    text-decoration: none;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.menu a:hover{
    background: 1px solid rgba(255,255,255,0.5);
}

#menu-bar:checked ~ .menu{
transform: translateX(0%);
}
#menu .conten{
    display: table;
    float: right;
}
@media (min-width:480px) {
    .nombre,.numero{
        font-size: 16px;
    }
	
	
}

@media (min-width:768px ) {
.menu{
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0);
        float: right;
        display: flex;
        background: rgba(70,109,73,0);

    }
    #menu label{
        display: none;
    }
    
    .menu a{
        border: none;
    }
    .conten{
        width: 100%;
    }
    .logo{
    float: left;
    width: 150px;
    height: 80px;
    margin-left: 20px;
    background: url(../Img/logo-blanco.png);
        background-size: cover;
}
    
}
@media (min-width:1024px ) {
    
}

