    .menu_horizontal {
        /* background-color: blue; */
        height: max-content;
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bold;
        padding: 20px;
    }

    .menu_horizontal ul {
        display:flex;
        height: 100%;
        list-style: none;
        justify-content: start;
        vertical-align:middle;
        align-items: center;
        /* background-color: red; */
        /* background-color: aliceblue; */
        color: black;
        flex-wrap:wrap;
        /* column-gap: 10px;
        gap:10px; */
    }

    .menu_horizontal a {
        display: block; 
        padding: 10px;
        color: black;
        font-size: 15px;
        text-decoration: none;
    }
    .menu_horizontal li:hover a {
        background-color: #ee0141;
        color:white;
        /* border-radius: 5px; */
        cursor: pointer;
        /* box-shadow: 2px 3px rgb(131 129 129) */
    }

    .menu_horizontal .activate {
        background-color: #ee0141;
        color: white;
        /* border-radius: 5px; */
        /* box-shadow: 2px 3px rgb(131 129 129) */
    }

    .menu_horizontal li {
        /* border: 1px solid black; */
        border-left: 1px solid #ee0141;
        /* border-radius: 5px; */
        /* box-shadow: 2px 3px rgb(131 129 129) */
    }
