.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 60px;
  margin-bottom: 0;
}
.home_faq.inner .accordionjs{
   margin-top: 0;
}
.accordionjs .acc_section {
  /*border: 1px solid #ccc;*/
  position: relative;
  z-index: 10;
  /*margin-top: -1px;*/
  overflow: hidden;
  padding: 25px 0;
  border-bottom: #939393 1px solid;
}
.accordionjs .acc_section .acc_head {
  position: relative;
  /*background: #fff;*/
  padding: 0 50px 0 0;
  display: block;
  cursor: pointer;
}
.accordionjs .acc_section .acc_head:after{
  position: absolute;
  right: 25px;
  top: 7px;
  width: 24px;
  height: 24px;
  background: url(../images/faq_arrow.png) 0 0 no-repeat;
  content: "";
  transition: all 0.3s ease-in-out;
}
.accordionjs .acc_section .acc_head h3 {
  /*margin: 5px 0;*/
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #131c55;
}
.accordionjs .acc_section .acc_content {
  padding: 40px 0 0 0;
}
.accordionjs .acc_section .acc_content p{
  font-size: 16px;
  line-height: 24px;
  color: #7b7b7b;
  text-align: left;
  font-weight: 400 !important;
}
.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:after{
  background-position: 0 100%;
}


@media (min-width: 768px) {
.accordionjs .acc_section .acc_head h3 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.accordionjs .acc_section .acc_content p{
  font-size: 18px;
  line-height: 30px;
}
}