.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: left;
}
.accordionjs .acc_section {
  border:1px solid #cccccc85;
  position: relative;
  z-index: 10;
  margin-top: -1px;
  overflow: hidden;
  margin-bottom: 9px;
}
.accordionjs .acc_section .acc_head {
position: relative;
    background: #fff;
    padding: 10px;
    display: block;
    cursor: pointer;
    font-size: 17px;
    font-family: 'Rajdhani';
    font-weight: 500;
    padding-left: 18px;
}
.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  margin: 5px 0;
}
.accordionjs .acc_section .acc_content {
  padding: 15px;
}
.accordionjs .acc_section .acc_content p {
	font-weight:200;
	font-size:14px;
	color:#333333;

}

.accordionjs .acc_section:first-of-type,
.accordionjs .acc_section:first-of-type .acc_head {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.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: #efefef;
  border-bottom: 1px solid #efefef;
}
