.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #536469;
  stroke-width: 5.5;
  stroke-linecap: round;
}
.ham8 .top {
  stroke-dasharray: 40 160;
}
.ham8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
.ham8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
.ham8.active .top {
  stroke-dashoffset: -64px;
  stroke: white;
  transition: 0.3s;
}
.ham8.active .middle {
  transform: rotate(90deg);
  stroke: white;
  transition: 0.3s;
}
.ham8.active .bottom {
  stroke-dashoffset: -64px;
  stroke: white;
  transition: 0.3s;
}

#accordian {
  /* background: #004050; */
  width: 100%;
  color: white;
}

#accordian > ul {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
/*heading styles*/
#accordian > h3 {
  font-size: 12px;
  line-height: 55px;
  cursor: pointer;
}
/*heading hover effect*/
#accordian > h3:hover {
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
/*iconfont styles*/
#accordian > h3 > span {
  font-size: 16px;
  margin-right: 10px;
}
/*list items*/
#accordian > li {
  list-style-type: none;
}
/*links*/
#accordian > ul > ul > li > a {
  color: white;
  text-decoration: none;
  font-size: 11px;
  line-height: 27px;
  display: block;
  padding: 0 15px;
  /*transition for smooth hover animation*/
  transition: all 0.15s;
}
/*hover effect on links*/
#accordian > ul > ul > li a:hover {
  background: #003545;
  border-left: 5px solid lightgreen;
}
/*Lets hide the non active LIs by default*/
#accordian > ul > ul {
  display: none;
}
#accordian > li.active ul {
  display: block;
}
#accordian > ul > li {
  line-height: 55px;
  margin-right: 0px;
}

#accordian > ul > li > ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#accordian > ul > li > ul > li {
  text-align: center;
  overflow: hidden;
  line-height: 20px;
  padding: 10px 0;
  margin: 0;
}
#accordian > ul > li > ul > li > a {
  color: white;
}
#accordian > ul > li > ul > li > a > p {
  font-style: italic;
  line-height: 25px;
  opacity: 0.5;
}

#accordian > ul > li > h3 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#accordian > ul > li > h3 > svg {
  margin-left: 10px;
  transform: rotate(0deg);
  transition: 0.2s;
}
.accordian_mainContent{
  color: white !important;
}
