.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px;
}
.accordionjs .acc_section {
  border-bottom: 1px solid #c1c4ce;
  position: relative;
  z-index: 10;
  margin-top: 0px;
  overflow: hidden;
  width:100%;
  float:left;
  letter-spacing:0.2px;
}
.accordionjs .acc_section .acc_head {
  position: relative;
  /*background: #fff;*/
  padding: 18px 0px;
  display: block;
  cursor: pointer; 
}
.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  margin: 0px 0;
  font-size:18px; 
  font-family: 'Graphik-Regular';
  color:#353f60;
  transition:all .5s ease;
}
.accordionjs .acc_section .acc_content {
  padding: 0px;
  float:left; width:100%; margin-bottom:20px;
}
.accordionjs .acc_section:first-of-type,
.accordionjs .acc_section:first-of-type .acc_head {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.accordionjs .acc_section:last-of-type,
.accordionjs .acc_section:last-of-type .acc_content {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.accordionjs .acc_section.acc_active > .acc_content {
  display: block;
}
.accordionjs .acc_section.acc_active > .acc_head {
/*  background: #F9F9F9;
  border-bottom: 1px solid #ccc;*/
}
.accordionjs .acc_section.acc_active > .acc_head h3 { font-family: 'Graphik-Bold'; }

.accordionjs .acc_section .acc_head.sub-menu h3:after { position:absolute; right:20px; top:17px; content:""; display: block; margin: 0; width: 12px; height: 12px; border-top: 2px solid #353f60;
 border-left: 2px solid #353f60; transform: rotate(225deg); transition:all .5s ease; }
.accordionjs .acc_section.acc_active  .acc_head.sub-menu h3:after { transform: rotate(45deg); top: 24px; }

.accordionjs .acc_section .acc_content ul li { float:left; width:100%; margin-bottom:12px; }
.accordionjs .acc_section .acc_content ul li a { font-size:15px; color:#5c647f;  font-family: 'Graphik-Regular'; font-size:15px; transition:all .5s ease; }
.accordionjs .acc_section .acc_content ul li a:hover { color:#32bce1;}
.accordionjs .acc_section .acc_content ul li a.active {  color:#32bce1; font-family: 'Graphik-Bold'; }
.accordionjs .acc_section:last-child { border-bottom:none;}






