/* custom css for accordion */
.acorn-accordion {
  cursor: pointer;
  padding: 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 30%);
  position: relative;
}

.acorn-accordion:after {
  display: inline-block;  
  position: absolute;
  right: 20px;
  content: '';
  height: 10px;
  width: 10px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: 0.5s;
}

.accordion-active:after {
  transform: rotate(225deg);
  content: '';
}

.acorn-accordion-panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordian-a-header-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

.accordian-a-header-highlight {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-left: 8px
}

.accordian-a-hightlight-svg {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 40px;
}

.accordian-a-header-wrapper h3 {
  text-align: center;
  font: normal normal bold 54px/70px Signika;
  letter-spacing: 0px;
}

.accordian-a-blob-top {
  position: absolute;
  top: -10%;
  right: -15%;
  z-index: -10;
  height: 300px
}

.accordian-a-blob-bottom {
  position: absolute;
  bottom: -10%;
  left: -10%;
  z-index: -10;
  height: 400px
}

.acorn-accordion-b {
  cursor: pointer;
  padding: 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  position: relative;
}

.acorn-accordion-b-panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}


.acorn-accordion-b-shadow {
  box-shadow: 0px 3px 6px rgb(0 0 0 / 30%);
}