 /* Remove default bullets */
 ul, #menus {
    list-style-type: none;
    /*background-color: black;*/
  }
  
  /* Remove margins and padding from the parent ul */
  #menus {
    margin: 0;
    padding: 6px;
  }
  
  /* Style the caret/arrow */
  .caret {
    cursor: pointer;
    user-select: none; /* Prevent text selection */
    /* font-size: larger;
    color: gold; */

  }
  
  /* Create the caret/arrow with a unicode, and style it */
  .caret::before {
    content: "\25B6";
    /*color: gold;*/
    display: inline-block;
    margin-right: 6px;
  }
  
  /* Rotate the caret/arrow icon when clicked on (using JavaScript) */
  .caret-down::before {
    transform: rotate(90deg);
  }
  
  /* Hide the nested list */
  .nested {
    display: none;
  }
  
  /* Show the nested list when the user clicks on the caret/arrow (with JavaScript) */
  .active {
    display: block;
  } 

  .mainmenu{
    padding-bottom: 6px;;
  }

  .submenu{
    padding: 2px;
    cursor: pointer;
  }

  nav {
    text-align: right;
}

.menu {
    display: flex;
    list-style-type: none;
  }
  
  .menu li {
    margin-left: 60px;
  }
  
  .menu li a {
    padding: 6px 0;
    color: #000;
  }
  
  /* Change color of link texts when hovered upon */
  .menu li a:hover {
    color: blue;
  }
  
  /* Also change color of icon when hover on link */
  .menu li a:hover{
    color: blue;
  }
  
  /* Hide all sub nav links by default, display children in column when displayed */
  
  .nav-items-1,.nav-items-2, .nav-items-3, .nav-items-4 {
    text-align: left; 
    display: none;
    flex-direction: column;
    background-color: #fff;
    color: #000;
    border: thin solid #c0c0c0;
  }
  
  .nav-items-1 a, .nav-items-2 a, .nav-items-3 a, .nav-items-4 a {
    font-size: 14px;
  }
  
  .nav-items-1, .nav-items-2, .nav-items-3 {
    /*width: 100%;*/
    max-width: 150px;
    position: absolute;
    /*top: 64px;*/
    padding: 10px;
    z-index: 1;
  }
  
  .nav-items-4 {
    width: 100%;
    max-width: 130px;
    position: absolute;
    top: 64px;
    z-index: 1;
  }
  
  /* This will be used to display sub links for a nav when active */
  
  .navActive {
    display: flex;
  }
  