.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
  margin-bottom: 0px;

}
.accordionjs .acc_section {
  
  border-top: 1px solid #e2e2e2;
  position: relative;
  z-index: 10;
  margin-top: -1px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #747474;
  background: #F9F9F9;

 
}
.accordionjs .acc_section .acc_head {
  position: relative;
  background: #fff;
  padding: 10px 20px 10px 20px;
  display: block;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  
  
}
.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  margin: 5px 0;
  
  
}
.accordionjs .acc_section .acc_content {
  padding: 10px 20px 10px 20px;
  margin-top:-10px;
  color: #212121;
  font-size: 16px;
}
.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: 0px solid #ccc;
  color: #0179d7;
}
