.accordionjs {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 20px;
}
.accordionjs .acc_section {
  position: relative;
  z-index: 10;
  margin-top: -1px;
  overflow: hidden;
}
.accordionjs .acc_section .acc_head {
  position: relative;
  background: #fff;
  padding: 10px;
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  border-bottom: 1px solid #3333332b;
  padding-bottom: 40px;
      text-align: left;
}
.accordionjs .acc_section.acc_active > .acc_head .img-arrow {
  transform: rotate(180deg);
}
.accordionjs .acc_section .acc_head h3 {
  line-height: 1;
  margin: 5px 0;
}
.accordionjs .acc_section .acc_content {
  padding: 10px;
}
.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: flex;
    flex-direction: column;
    gap: 5px;
    border-radius: 15px;
    margin-top: 20px;
    padding: 20px;
    align-items: flex-start;
}
.accordionjs .acc_section .acc_head:last-child{
  border-bottom: none;  
}
.acc_content p{
    margin-bottom: 0;
}
.accordionjs .acc_section.acc_active > .acc_content img{
    max-width: 250px;
    width: 100%;
    height: 100%;
    margin-top: 10px;
}