﻿/* Navbar container */
.navbar_Menu {
    overflow: hidden;
    background-color: #333;
    font-family: Arial;
}

    /* Links inside the navbar */
    .navbar_Menu a {
        float: right;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-family:myFont;
        font-weight:bold;
    }

/* The dropdown container */
.dropdown_Menu {
    float: right;
    overflow: hidden;
    font-family: myFont;
    font-weight: bold;
}

    /* Dropdown button */
    .dropdown_Menu .dropbtn_Menu {
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 14px 16px;
        background-color: inherit;
        font-family: myFont;
        font-weight: bold;
        font: inherit; /* Important for vertical align on mobile phones */
        margin: 0; /* Important for vertical align on mobile phones */
    }

    /* Add a red background color to navbar links on hover */
    .navbar_Menu a:hover, .dropdown_Menu:hover .dropbtn_Menu {
        background-color: red;
    }

/* Dropdown content (hidden by default) */
.dropdown-content_Menu {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 100%;
    right: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Mega Menu header, if needed */
    .dropdown-content_Menu .header_Menu {
        background: red;
        padding: 16px;
        color: white;
    }

/* Show the dropdown menu on hover */
.dropdown_Menu:hover .dropdown-content_Menu {
    display: block;
}

/* Create three equal columns that floats next to each other */
.column_Menu {
    float: right;
    width: 33.33%;
    padding: 10px;
    background-color: #ccc;
    height: 400px;
}

    /* Style links inside the columns */
    .column_Menu a {
        float: none;
        color: black;
        padding: 16px;
        text-decoration: none;
        display: block;
        text-align: right;
    }

        /* Add a background color on hover */
        .column_Menu a:hover {
            background-color: #ddd;
        }

/* Clear floats after the columns */
.row_Menu:after {
    content: "";
    display: table;
    clear: both;
}
