.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
}
.accordionjs .acc_section {
  position: relative;
  z-index: 10;
  overflow: hidden;
  margin: 0 2% 40px;
  /*width: 48%;
  float: left;*/
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px 5px rgba(0,0,0,0.1);
  padding: 30px;
}
/*.accordionjs .acc_section:nth-child(even){
  float: right;
}*/
.accordionjs .acc_section .acc_head {
  position: relative;
  padding: 0;
  display: block;
  cursor: pointer;
}
.accordionjs .acc_section .acc_head h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #202020;
  margin: 0;
  background: url(../images/acc_plus.png) 100% 50% no-repeat;
}
.accordionjs .acc_section .acc_content {
  padding: 15px 0 0;
}
.accordionjs .acc_section .acc_content p{
  font-size: 16px; 
  line-height: 20px; 
  font-weight: 400; 
  color: #5f5f5f; 
  margin: 0 0 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 h3 {
  /*background: #F9F9F9;
  border-bottom: 1px solid #ccc;*/
  background: url(../images/acc_minus.png) 100% 50% no-repeat;
}
