* {
    box-sizing: border-box;
    margin: 0;
    border: 0;
}


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    background-color: rgba(56, 92, 160, 0.7);
    color: white;
    font-family: 'Lato', sans-serif;
}
ul {
    list-style: none;
}

header {
    background-color: rgba(8, 29, 97, 0.47);
    padding: .5em;
}


#llamamenu .material-icons,
#ocultamenu .material-icons {
}

.contenedor {
    justify-content: space-between;
    margin: 0 auto;
    max-width: 40rem
}

header .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    
}


header ul {
    background-color: rgba(13, 78, 126, 0.68);
    color: white;
}


header nav a,
header nav label {
    padding: .5em 1em;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header nav a:hover,
header nav label:hover {
    color: white;
}


.material-icons{
    font-size: 2em;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
    display: none;
}

header nav label{
    cursor: pointer;
    padding: .5em;
    position: relative;
    z-index: 9999;
    }

#menu-toggle:not(:checked) + #llamamenu,
#menu-toggle:checked + #llamamenu + #ocultamenu {
    display: flex;
}

#menu-toggle:checked + #llamamenu,
#menu-toggle:not(:checked) + #llamamenu + #ocultamenu {
    display: none;
}

header nav ul {
    position: fixed;
    left: 100%;
    top: 0;
    height: 100vh;
    width: 50%;
    z-index: 9990;
    padding-top: 4rem;
    transition: all .25s ease;
}

#menu-toggle:checked + #llamamenu + #ocultamenu + ul {
    left: 50%;
    transition: all .25s ease;
}


a {
    text-decoration: none;
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

main {
    min-height: 100vh;
    margin:2em;
    margin-top: 1em;
    z-index: 9000;
}

main ul {
    padding: 0em;
    margin-top: 0.3em;
}

main ul li {
    font-size: 0.8750em;
}


h2 {
    font-size: 1.5em;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;

}
h3 {
    font-size: 1.3em;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
h4 {
    font-size: 1.14em;
    text-decoration: none;
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    margin-bottom: 0.3em;
    margin-top: 1em;
        
}

h5 {
    font-size: 1em;
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    margin-bottom: .5em;
    margin-top: 2em;
}


footer {
    background: #080ea3;
    color:white;
    padding: 2em;
    font-size: 9pt; 
}

.logo {
    background: #161b8b;
    font-size: 1em;
    padding: 0.625em;
    font-family: 'Hepta Slab', serif;
    font-weight: 900;
    border-radius: .5em;
    letter-spacing: 0.1em;
}

.avatar {
    width: 6.25em;
    height: 6.25em;
    border-radius:6.25em;
    
}

.nombre {
    display: flex;
    flex-direction: row;
justify-content: space-between;
    align-items: center;
    max-width: 20rem;
    margin-bottom: 2em;
    
}

.movil {
    max-width: 100%;
    margin-top: 1em;
}

.usuarios p {
    margin-top: 1em;
    padding: .7em;
    background-color:#4747c3;
    border-radius: .5em;
    
}

.usuarios h3 { 
    margin-bottom: .2em;
    
}

.comitente h5 {
    margin-top: .5em;
}

.comitente p {
    margin-top: .5em;
}

.usuarios {
    margin-top: 2em;
    margin-bottom: 2em;
}

.objetivos p {
    margin-top: .5em;
}

.propuesta {
    margin-top: 2em;
}


@media (min-width: 45em) {
    #menu-toggle,
    #menu-toggle:checked + #llamamenu,
    #menu-toggle:not(:checked) + #llamamenu,
    #menu-toggle:checked + #llamamenu + #ocultamenu,
    #menu-toggle:not(checked) + #llamamenu + #ocultamenu {
        display: none;
    }
    
    #menu-toggle:not(:checked) + #llamamenu + #ocultamenu + ul,
    #menu-toggle:checked + #llamamenu + #ocultamenu + ul {
        display: flex;
        flex-wrap: wrap;
        position: relative;
        top: auto;
        left: auto;
        height: auto;
        width: 100%;
        padding-top: 0;
    }
    
        header nav ul {
        flex-basis: 25%;
    }         

}

