.navtwo a, .navtwo label {
  margin: 0;
  padding: 20px 20px 20px 40px;
  border: 0;
  display: block;
  color: #eee;
  background-color: #1f71b8;
  -webkit-transition: all .25s ease-in;
  transition: all .25s ease-in;
  font-family:'Montserrat';
  font-size: 19px;
  border-bottom: 1px solid #eee;
  align-content: right;
}

.navtwo a:focus, .navtwo a:hover, .navtwo label:focus, .navtwo label:hover {
  padding: 20px 20px 20px 40px;
  color: #eee;
  background: #42a5e8;
  border-bottom: 1px solid #006633;
}
.navtwo label { cursor: pointer; }
/**
 * Styling first level lists items
 */
.group-list a, .group-list label {
  padding: 20px 20px 20px 40px;
  background: #42a5e8;
  color: #211915;
}
.group-list a:focus, .group-list a:hover, .group-list label:focus, .group-list label:hover { background: #9cd7f3; }
/**
 * Styling second level list items
 */
.sub-group-list a, .sub-group-list label {
  padding: 20px 20px 20px 40px;
  background: #42a5e8;
}
.sub-group-list a:focus, .sub-group-list a:hover, .sub-group-list label:focus, .sub-group-list label:hover { background: #9cd7f3; }
/**
 * Styling third level list items
 */
.sub-sub-group-list a, .sub-sub-group-list label {
  padding: 20px 20px 20px 40px;
  background: #42a5e8;
  
}
.sub-sub-group-list a:focus, .sub-sub-group-list a:hover, .sub-sub-group-list label:focus, .sub-sub-group-list label:hover { background: #9cd7f3; }
/**
 * Hide nested lists
 */
.group-list, .sub-group-list, .sub-sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .5s ease-in-out;
  transition: max-height .5s ease-in-out;
}
.navtwo__list input[type=checkbox]:checked + label + ul { /* reset the height when checkbox is checked */
max-height: 1000px; }
label > span {
  float: right;
  -webkit-transition: -webkit-transform .65s ease;
  transition: transform .65s ease;
}
.navtwo__list input[type=checkbox]:checked + label > span {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}