body {
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/*in use*/
.headercolour {
    /*background-color: #0082e6; 718969*/
    background-color: #718969;
    background-image: -webkit-linear-gradient(to bottom right, #718969, #959f91);
    background-image: -o-linear-gradient(to bottom right, #718969, #959f91);
    background-image: -moz-linear-gradient(to bottom right, #718969, #959f91);
    background-image: linear-gradient(to bottom right, #718969, #959f91);
    border-bottom: 4px solid #647360;
}


nav {
  padding: 0px 10px;
}

ul{
  list-style-type: none;
}

/*in use*/
.menu li.item{
  font-size: 20px;
  padding: 5px 5px 0px 8px;
  line-height: 0px;
}



/*in use*/
.menu li.item a {
  /*padding: 10px;*/
  margin-bottom: 0px;
  width: 100%;
  /*line-height: 0px;*/
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  /*background: #829c79;*/
  padding: 20px 15px;
  /*border: 2px solid #63795c; <!--#78cfcf; #20a2a2; #006d6d;-->*/
  /*border-radius: 20em;*/
  /*background: transparent;*/
  font-family: 'Roboto'; font-size: 1em; color: #ffffff;
}

/*in use*/
.menu li.item a:hover {
  /*background: none;*/
  color: #000000;
  /*background: #1e8e8e; <!--#1b9bff;-->*/
  background: transparent;
  transition: .5s;
}
/*in use*/
.logo a{
  font-size: 20px;
  color: #ffffff;
}
/*in use*/
.logo a:hover{
  color: #aaa;
}

/* buttons */
/*in use*/
.login-button {
  background-color: #2E597F;
  margin-top: 0px;
  /*margin-bottom: 10px;*/
  margin-left: 4px;
  margin-right: 10px;
  padding: 6px;
  width: 100px;
  border: 1px solid #bbb;
  cursor: pointer;
  float: right;
  border-radius: 4px;
  -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
  text-align: center;
  font-weight: normal;
  font-family: 'Roboto'; font-size: 1em; color: #ffffff;
}
/*in use*/
.login-button:hover {
    border: 1px solid #333;
}



/* Moblie Menu */
/*in use*/
.menu{
  display: flex;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: space-between;
  align-items: center;
  transition: max-height .10s ease-out;
}

.toggle{
  order:1;
}

.item.button{
  order:3;
}

.item{
  width: 100%;
  text-align: center;
  order:3;
  display: none;
}

.item.active{
  display: block;
}

.toggle{
  cursor: pointer;
}

.bars{
  background: #ffffff;
  display: inline-block;
  height: 4px;
  position: relative;
  width:26px;
  border-radius: 4px;
  top: -4px;
}

.bars::before,.bars::after{
  background: #ffffff;
  content: "";
  display: inline-block;
  height: 4px;
  position: absolute;
  width:26px;
  border-radius: 4px;
  transition: all .2s ease-out;
}

.bars::before{
  top: 8px;
}

.bars::after{
  top: -8px;
}



/* Tablet Menu  min-width:468px*/

@media all and (min-width:788px){
  /*in use*/
  .menu{
    justify-content: center;
    padding-bottom: 10px;
    padding-top: 10px;
  }/*in use*/
  .logo{
    flex:1;
  }
  .item .button{
    width:auto;
    order:1;
    display: block;
    margin-right: 8px;
  }

  .toggle{
    order:2;
  }

  .item.button a{
    text-decoration: none;
    padding: 7px 15px;
    /*background: teal;*/
    border: 1px solid #ffffff;
    border-radius: 10px;
    background: transparent;
  }

  .item.button a:hover{
    color: #ff0000;
    transition:all .25s;
  }
  .button:not(.secondary) a:hover{
      background: #006d6d;
      border-color: #aaa;
  }
  /*in use*/
  .menu li a{
  color: white;
  font-size: 20px;
  padding: 20px 10px;
  border-radius: 3px;
  /*text-transform: uppercase;*/
  }

}

/* Desktop Menu min-width: 1188px*/

@media all and (min-width: 1110px) {

  .menu{
    justify-content: center;
    padding-bottom: 0px;
    padding-top: 0px;
  }
  .item{
    display: block;
    width: auto;
  }
  .toggle{
    display: none;
  }/*in use*/
  .logo{
    order:0;
  }
  .item{
    order: 1;
  }
  .button{
    order: 2;
  }
  /*in use*/
  .menu li{
    padding: 15px 10px;
  }
  /*in use*/
  .menu li.button{
    padding-right: 0px;
  }
  /*in use*/
  .menu li a{
  color: white;
  font-size: 20px;
  padding: 20px 10px;
  border-radius: 3px;
  /*text-transform: uppercase;*/
  }

}
