/* Inicio del menu */

header {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 200px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid transparent;
    animation: color_infinito 15s infinite;
}

@keyframes color_infinito {
    0% {
        border-color: white;
    }

    25% {
        border-color: rgb(0, 255, 0);
    }

    65% {
        border-color: rgb(0, 208, 255);
    }

    100% {
        border-color: white;
    }
}


#imagen_logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    margin-right: 20px;
}

#name_profile {
    font-size: 20px;
    font-weight: bold;
    color: aliceblue;
}

#menu>ul {
    display: flex;
    list-style: none;
}

#menu ul li {
    height: 30px;
    margin-right: 40px;
    text-align: center;
    font-size: 20px;
}

#menu ul li:last-child {
    margin-right: 0px;
}

#menu a {
    position: relative;
    display: block;
    padding-bottom: 5px;
    text-decoration: none;
    color: white;
}

#menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c15ef3;
    z-index: 1;
    transform: scaleX(0);
    transform-origin: center;
    transition: all 0.2s ease-in-out;
}

#menu a:hover::before {
    transform: scaleX(1);
}


#caja_botones {
    display: none;
    justify-content: right;
    align-items: center;
    width: 70px;
    height: 40px;
}

#caja_botones .icon {
    font-size: 25px;
    color: white;
    background: transparent;
}

#cerrar {
    display: none;
}

.menu_activo {
    display: flex !important;
}
/* Fin del menu */


/*MEDIA QUERIES*/


/*Menu en portafolio*/
@media(max-width:1080px) {

    header {
        padding-top: 30px;
        padding-bottom: 50px;
        height: auto;
    }

    #caja_botones {
        display: flex;
    }

    #menu {
        display: none;
        justify-content: center;
        width: 100%;
        height: 100px;
    }

    #menu ul li {
        align-self: center;
    }
}


@media(max-width:722px) {

    #menu {
        height: auto;
    }

    #menu ul {
        flex-direction: column;
        align-items: center;
    }

    #menu ul li {
        margin-right: 0px;
        margin-top: 30px;
    }

}

@media (max-width: 520px) {
    header {
        width: 100% !important;
        justify-content: space-between;
        padding: 4%;
    }

    .logo {
        border: none;
        padding: 0px;
    }

    #caja_botones {
        border: none;
        margin: 40px 0px 40px 0px;
    }

    #menu ul li:first-child {
        margin-top: 0px;
    }

    #menu ul li:last-child {
        margin-bottom: 40px;
    }

}

/* FIn de menu */