.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;   
}
.accordionjs .acc_section {
  position: relative;
  z-index: 10;
  /*margin-top: -1px;*/
  overflow: hidden;
  /*float: left;
  width: 31.5%;*/
  border: #d2d4b5 1px solid;
  border-radius: 10px;
  padding: 10px 20px;
  flex-grow: 1;
  width: 30.5%;
}
.accordionjs .acc_section .acc_head {
  position: relative;
  background: #fff;
  display: block;
  cursor: pointer;
}
.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  font-family: "DM Sans", sans-serif !important;
  font-size: 16px;
  line-height: 37px;
  color: #141a17;
  font-weight: 500;
  padding: 0 10px 0 45px;
  background: url(../images/faq-icon.png) 0 0 no-repeat;
  position: relative;
}
.accordionjs .acc_section .acc_head h3:after{
  content: "\2b";
  font-family: FontAwesome;
  position: absolute;
  right: 0;
  top: 0;
  color: #c1c59a;
}
.accordionjs .acc_section.acc_active .acc_head h3:after{
  content: "\f068";
}
.accordionjs .acc_section .acc_content {
  padding: 10px 0 0;
}
.accordionjs .acc_section .acc_content p{
  font-size: 14px;
  line-height: 20px;
  color: #141a17;
  font-weight: 500;
}
.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;*/
}


@media screen and (max-width: 1600px) {
.accordionjs .acc_section .acc_head h3 {
  font-size: 16px;
  line-height: 18px;
  min-height: 37px;
}
.accordionjs .acc_section .acc_head h3:after{
  top: 8px;
}
}

@media screen and (max-width: 1100px) {
  .accordionjs .acc_section{width: 48.5%;}
}