.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 0 20px;
  width: 48%;
  float: left;
  background-color: #ffd700;*/
  padding: 30px 15px;
  border-top: #000 1px solid;
}
.accordionjs .acc_section:first-child{
  border: none;
}
/*.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: 'Lato', sans-serif !important;
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  color: #040404;
  margin: 0;
  background: url(../images/faq_plus.png) 100% 50% no-repeat;
  padding: 0 50px 0 0;
}
.accordionjs .acc_section .acc_content {
  padding: 15px 0 0;
}
.accordionjs .acc_section .acc_content p{
  font-size: 16px; 
  line-height: 24px; 
  font-weight: 400; 
  color: #040404; 
  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;*/
}
