@charset "UTF-8";
/* CSS Document */

/* Basic styling */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}



nav {
}

a {
  
}
.menu,
.submenu {
  list-style-type: none;
}
.logo {
  font-size: 20px;
  padding: 7.5px 10px 7.5px 0;
}
.item {
  padding: 5px 5px;
}
.item.button {
  padding: 9px 5px;
  
}
.item:not(.button) a:hover,
.item a:hover::after {
  color: #fff;
}
/* Mobile menu */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.menu li a {
  display: block;
  padding: 5px 5px;
  color: #fff;
}
.menu li.subitem a {
  padding: 15px;
}
.toggle {
  order: 1;
  font-size: 20px;
}

.toggle a {
    color: #fff;
}
.item.button {
  order: 2;
}
.item {
  order: 3;
  width: 100%;
  text-align: center;
  display: none;
}
.active .item {
  display: block;
  background-color: var(--paleBlue);
}
.button.secondary {
  /* divider between buttons and menu links */
}
/* Submenu up from mobile screens */
.submenu {
  display: none;
}
.submenu-active .submenu {
  display: block;
}
.has-submenu i {
  font-size: 12px;
}
.has-submenu > a::after {
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  line-height: 16px;
  font-weight: 900;
  content: "\f078";
  color: white;
  padding-left: 5px;
}
.subitem a {
  padding: 10px 15px;
}
.submenu-active {
  background-color: #111;
  border-radius: 3px;
}

/* Tablet menu */
/*@media all and (min-width: 700px) {
  .menu {
    justify-content: center;
  }
  .logo {
    flex: 1;
  }
  .item.button {
    width: auto;
    order: 1;
    display: block;
  }
  .toggle {
    flex: 1;
    text-align: right;
    order: 2;
  }
  Button up from tablet screen
  .menu li.button a {
    padding: 10px 15px;
    margin: 5px 0;
  }
    
    .menu li a {
    }
  .button a {
    background: #0080ff;
    border: 1px royalblue solid;
  }
  .button.secondary {
    border: 0;
  }
  .button.secondary a {
    background: transparent;
    border: 1px #0080ff solid;
  }
  .button a:hover {
    text-decoration: none;
  }
  .button:not(.secondary) a:hover {
    background: royalblue;
    border-color: darkblue;
  }
}*/
/* Desktop menu */
@media all and (min-width: 660px) {
    nav {
		width: 70%;
}
    
nav a {
  color: #fff;
	font-weight: 500;
  text-decoration: none;
	text-shadow: 2px 2px 3px rgba(0,0,0,.35);
}
    
    /* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
    border-bottom: 2px solid #DDD;
        box-shadow: 0px 10px 20px rgba(100,100,100,.4);
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
  padding-top: 60px;
}
    
  .menu {
    flex-wrap: wrap;
    background: none;
    justify-content: center;
    gap: 10px;
    margin: 0;
  }
  .logo {
    order: 0;
  }
  .item {
      padding: 0px 15px;
    order: 1;
    position: relative;
    display: block;
    width: auto;
  }
  .button {
    order: 2;
  }
  .submenu-active .submenu {
    display: block;
    position: absolute;
    left: -170px;
    top: 37px;
    background-color: #CCC;
  }
    .submenu a {
        color: #fff;
    }
  .toggle {
    display: none;
  }
  .submenu-active {
    border-radius: 0;
      background-color: #BBB;
      z-index: 2;
  }

    .submenu-active a{
        color: #fff;
    }
    
    .submenu-active.has-submenu > a::after {
  color: #fff;
}
    .submenu {
        height: 180px;
    }

    .submenu li {
        width: 240px;
        line-height: 16px;
    }
    
    .has-submenu > a::after {
        color: #DDD
    }
    
    .menu li a {
        font-size: 15px;
        text-transform: uppercase;
        padding: 6px;
    }
    .nav_col2 {
        margin-left: 240px;
    }
}

/*@media (min-width:661px) and (max-width:1021px) {
    .submenu-active .submenu {
        top: 53px;
    }
}*/
