
.accordion {
  width: 100%;
  list-style-type: none; 
	padding: 0
}
.accordion .item {
  cursor: pointer;
  display: block;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom:20px;
}
 
.accordion li:last-child .item { border-bottom: 0; }

 
.accordion li.open .item { color: #ff2929; }
 
.accordion li.open i { color: #ff2929; }

.subItems {
  display: none;
	padding: 0;
	margin-top:10px; margin-bottom:20px;
}
.subItems li { border-bottom: 1px solid #4b4a5e; }
 
.subItems a {
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.subItems a:hover {
}