.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px;
}
.accordionjs .acc_section {
  border: 1px solid var(--primary-color);
  position: relative;
  z-index: 10;
  margin-top: -1px;
  overflow: hidden;
}
.accordionjs .acc_section .acc_head {
  position: relative;
  background: #fff;
  padding: 10px;
  display: block;
  cursor: pointer;
  color: #000;
}
.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  margin: 0 0 5px;
  color: #000;
  position: relative;
}
.accordionjs .acc_section .acc_head h3::after {
  font-family: 'Font Awesome 6 Free';
  content: '\2b';
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 24px;
}
.accordionjs .acc_section .acc_content {
  padding: 10px;
  background: #fff;
  color: #000;
}
.accordionjs .acc_section .acc_content h2{
  color: #000;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 30px;
}
.accordionjs .acc_section .acc_content h3{
  color: #000;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 30px;
}
.accordionjs .acc_section .acc_content h4 {
  color: #000;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
}
.accordionjs .acc_section .acc_content p{
  color: #000;
  line-height: 1.3;
}
.accordionjs .acc_section .acc_content p.nomar{
  margin-bottom: 5px;
}
.accordionjs .acc_section .acc_content ul{
  color: #000;
  line-height: 1.3;
  margin-bottom: 1em;
}
.accordionjs .acc_section .acc_content .testimonial{
  max-height: 590px;
  min-height: 590px;
  overflow-y: scroll;
  padding: 30px 50px 30px 30px;
  border: var(--primary-color) 1px solid;
}
.accordionjs .acc_section .acc_content .pq-testimonial-box.pq-style-1{
  padding: 0 0 25px;
  margin: 0 0 20px;
  border-bottom: #000 1px solid;
}
.accordionjs .acc_section .acc_content .pq-testimonial-content p{
  min-height: 1px;
  margin-bottom: 10px;
}
.accordionjs .acc_section .acc_content .wirte-rev{
  padding-top: 30px;
}
.accordionjs .acc_section .acc_content .package ul li{
  padding-bottom: 25px;
}
.accordionjs .acc_section:first-of-type,
.accordionjs .acc_section:first-of-type .acc_head {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordionjs .acc_section:last-of-type,
.accordionjs .acc_section:last-of-type .acc_content {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.accordionjs .acc_section.acc_active > .acc_content {
  display: block;
}
.accordionjs .acc_section.acc_active > .acc_head {
  background: var(--primary-color);
  color: #fff;
}
.accordionjs .acc_section.acc_active > .acc_head h3{
  color: #fff;
}
.accordionjs .acc_section.acc_active > .acc_head h3::after {
  font-family: 'Font Awesome 6 Free';
  content: '\f068';
  position: absolute;
  top: 5px;
}

@media(max-width:397px) {
  .accordionjs .acc_section .acc_head h3{
    font-size: 28px;
  }
}