.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 !important;
}
.accordionjs .acc_section {
  position: relative;
  z-index: 10;
  overflow: hidden;
  margin: 0 0 20px;
  /*width: 48%;
  float: left;*/
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 0;
  border: #d7d7d7 1px solid;
  box-shadow: 0 0 5px 5px rgba(0,0,0,0.1);
}
.accordionjs .acc_section.acc_active{
  
}
/*.accordionjs .acc_section:nth-child(even){
  float: right;
}*/
.accordionjs .acc_section .acc_head {
  position: relative;
  display: block;
  cursor: pointer;
}
.accordionjs .acc_section .acc_head h3 {
  font-family: "Aclonica", sans-serif; 
  font-size: 20px; 
  line-height: 24px; 
  font-weight: 400; 
  color: #040404;
  margin: 0;
  position: relative;
  padding: 0 50px 0 0;
}
.accordionjs .acc_section .acc_head h3:after{
  font-family: 'FontAwesome'; 
  content:"\f078";
  position: absolute; 
  right: 0; 
  top: 0; 
  font-size: 25px;
}
.accordionjs .acc_section .acc_content {
  padding: 20px 0 0;
}
.accordionjs .acc_section .acc_content p{
  font-size: 16px; line-height: 30px; color: #000; margin: 0 0 10px;
}
.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 h3:after {
  content:"\f077";
}
