.wrapper_navigator {

    display: none;
        font-family: "GraphikLCGRegular", sans-serif;
}

.item_navigator a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

@media (max-width:750px) {
    .wrapper_navigator {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 100%;
        bottom: 0;
        background-color: white;
        padding-top: 5px;
        padding-bottom: 5px;
        border-top: 1px solid #dddddd;
        z-index: 999;

    }
}