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

.portada{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00161E;
    height: 300px;
}

.backdrop{
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.backdrop h1{
    color: white;
    z-index: 2;
}           

/* main */

.main{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin: 50px 0 0 0;
    width: 100%;
}
.main > * {
    display: flex;
    flex-direction: column;
}
/* nav-aside */
.navegacion{
    position: sticky;
    text-align: center;
    top: 40px;
    left: 0;
    background-color: #00161E;
    margin-top: 80px;
    width: 20dvw;
    height: 300px;
    border-radius: 5px;
}
.navegacion > *{
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .2s linear;
    font-size: 1em;
}
.navegacion > *:hover{
    filter: contrast(200%);
    background-color: #00161ea6;
}
/* contenido principal */
.conenidoNosotros{  
    padding: 0 5dvw 0 5dvw;
    justify-content: center;
    width: 80dvw;
}
.conenidoNosotros > *{
   margin-bottom: 200px;
}
.img{
    width: 100%;
    height: auto;
    margin-top: 40px;
}
.docs{
    width: 100%;
    height: 100dvh;    
    margin-top: 40px;
}

/* TEMA CLARO */
.tema-claro .navar *{
    fill: white;
    animation: changeColoronLightMode linear forwards;
    animation-timeline: scroll(root);
    animation-range: 250px 300px;
}
.tema-claro .navar a svg:hover path{
    animation: changeColoronLightModeHover .3s linear both;
}
.tema-claro .navar .tema:hover path{
    animation: changeColoronLightModeHover .3s linear both;
}
.tema-claro .navar a .scroll:hover path{
    animation: changeColoronLightModeHovero .3s linear both;
}
.tema-claro .navar .scroll:hover path{
    animation: changeColoronLightModeHovero .3s linear both;
}

/* ANIMACIONES */

@keyframes changeColoronLightMode {
    to{
        fill: black;
    }
}
@keyframes changeColoronLightModeHover {
    from{
        fill: white;
    }
    to{
        fill: #05ADEA;
    }
}
@keyframes changeColoronLightModeHovero {
    from{
        fill: black;
    }
    to{
        fill: #05ADEA;
    }
}

@media (max-width: 500px) {
    .navegacion{
        font-size: 10px;
    }
}