@charset "UTF-8";
/* CSS Document */
/* Basic styling */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

#denim101 nav {
  background: #9db1c1;
  padding: 0;
}
#denim101 ul {
  list-style-type: none;
	padding: 0;
}
#denim101 a {
	color: white;
	font-family: "Montserrat", Arial, "Helvetica Neue", Helvetica, "sans-serif";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-style: normal;
	font-weight: 600; 	
	text-decoration: none;
}
#denim101 nav a:hover {
	text-decoration: none;
	color: #0d2246;
	font-weight: 400; 
	height: 100%;
}
#denim101 .logo a:hover {
  text-decoration: none;
}
#denim101 .menu li {
  font-size: calc( 2.80vw + 1vmin);
  padding: 15px 5px;
  white-space: nowrap;
}
#denim101 .logo a,
#denim101 .toggle a {
  font-size: 20px;
}
#denim101 .button.secondary {
  border-bottom: 1px #444 solid;
}
/* Mobile menu */
#denim101 .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#denim101 .toggle {
  order: 1;
}
#denim101 .item.button {
  order: 2;
}
#denim101 .item {
	width: 100%;
	text-align: center;
	order: 3;
	border-bottom: white solid thin;
}
#denim101 .item:last-child {
	border-bottom: none;
}
#denim101 .item.active {
  display: block;
}
/* Tablet menu */
@media all and (min-width: 650px) {
  #denim101 .menu {
    justify-content: center;
  }
	#denim101 .menu li {
  font-size: calc( 0.60vw + 1vmin);
	}
  #denim101 .logo {
    flex: 1;
  }
  #denim101 .toggle {
    flex: 1;
    text-align: right;
  }
  #denim101 .item.button {
    width: auto;
    order: 1;
    display: block;
  }
  #denim101 .toggle {
    order: 2;
  }
  #denim101 .button.secondary {
    border: 0;
  }
  #denim101 .button a {
    padding: 7.5px 15px;
    background: teal;
    border: 1px #006d6d solid
	
  }
  #denim101 .button.secondary a {
    background: transparent;
  }
  #denim101 .button a:hover {
    text-decoration: none;
  }
  #denim101 .button:not(.secondary) a:hover {
    background: #006d6d;
    border-color: #005959;
  }
  #denim101 .button.secondary a:hover {
    color: #ddd;
  }
	#denim101 a {	
	text-decoration: underline;
	text-underline-position: under;
	line-height: 1.0;	
	}
	#denim101 .item {
	width: 100%;
	text-align: center;
	order: 3;
	border-bottom: none;
	}
/* }
Desktop menu 
@media all and (min-width: 900px) {*/
  #denim101 .item {
    display: block;
    width: auto;
	margin: 0 1%; 
  }
	#denim101 .menu li {
	font-size: calc( 0.20vw + 1vmin);	
	}
  #denim101 .toggle {
    display: none;
  }
  #denim101 .logo {
    order: 0;
  }
  #denim101 .item {
    order: 1;
  }
  #denim101 .button {
    order: 2;
  }
  #denim101 .menu li {
    padding: 1% 0.5%;
  }
  #denim101 .menu li.button {
    padding-right: 0;
  }
}
