/************************************** PRIMER GRID **************************************/
.navbar {
    background-color: #0d0d0eb2;
}
.navbar-toggler{
    border: 0;
}
.navbar-toggler-icon{
    background-image: url(
"data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.redes_desk{
    display: none;
}
.redes_movil{
    display: flex;
}
.redes_movil a {
    width:40px;
    text-align: center;
}

@media only screen and (min-width: 860px)  {
    .container-fluid{
        align-items: center;
        justify-items: end;
        position: absolute;
        width: 100%;
    }
    .navbar {
        box-sizing: border-box;
        display: grid;
        grid-template-columns: auto auto auto auto auto;
        align-items: center;
        justify-items: end;
        padding: 10px;
        position: absolute;
        width: 100%;
        height: 60px;
        background-color: #0d0d0eb2;
    }

    .nav-item:nth-child(0) {
        width: 100px;
        place-self: start;
    }

    .navbar a:hover {
        cursor: pointer;
    }

    .nav-item {
        padding-left: 10px;
        place-self: center;
    }
    .nav-item:nth-child(6) {
        grid-column: 3;
        width: auto;
    }
    .nav-item:nth-child(7) {
        grid-column: 4;
        width: auto;
    }
    .nav-item:nth-child(8) {
        grid-column: 5;
        width: auto;
    }
    .redes_desk{
        display: flex;
    }
    .redes_movil{
        display: none;
    }
}
