.faq_section {
  padding: 32px 0 97px;
  overflow: hidden;
}

.sec_heading h2 {
  line-height: 50px;
  letter-spacing: -1.44px;
}

.faq_item {
  border-bottom: 1px solid var(--body-color);
  cursor: pointer;
  position: relative;
}

.faq_header {
  position: relative;
  font-weight: 700;
  font-size: 16px;
  line-height: 164%;
  letter-spacing: -0.32px;
  padding: 27px 0;
  border: none;
  color: var(--title-color);
  background: transparent;
  width: 100%;
  text-align: left;
}

.faq_header:after {
  content: "";
  background: url(https://trekai.org/hubfs/assets/images/plus.svg) no-repeat;
  width: 17px;
  height: 17px;
  position: absolute;
  right: 15px;
  top: 32px;
}

.faq_header.active:after {
  background: url(https://trekai.org/hubfs/assets/images/minus.svg) no-repeat;
  width: 17px;
  height: 3px;
  top: 39px;
}

.faq_header:hover,
.faq_header:active,
.faq_header:focus {
  border: none;
  background: transparent;
  {# color: var(--title-color); #}
}

.faq_group {
  margin-top: 14px;
}

.faq_body {
  padding-top: 29px;
  display: none;
  position: relative;
  z-index: 1;
  padding: 2px 0 27px;
}

.faq_body, 
.faq_body * {
  font-size: 16px;
  font-weight: 500;
  line-height: 164%;
  letter-spacing: -0.32px;
}

.faq_item.active .faq_body {
  display: block;
  transition: 0.3s ease all;
}

.anim_layer {
  position: absolute;
  left: -50%;
  right: -50%;
  top: -2px;
  bottom: -2px;
  transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(0);
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .5s;
  transform-origin: bottom;
}

.faq_item:hover .anim_layer,
.faq_item:focus-within .anim_layer,
.faq_item.active .anim_layer {
  transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

@media (max-width: 768px) {
  .faq_section {
    padding: 18px 0 46px;
  }

  .sec_heading h2 {
    font-size: 28px !important;
    line-height: 35px;
    letter-spacing: -1.12px;
  }
  
  .faq_header {
    font-size: 17px;
    line-height: 28px;
    letter-spacing: -0.34px;
    padding-right: 40px;
  }

  .faq_header:after {
    right: 10px;
    /* top: 6px; */
  }

  .faq_header.active:after {
    right: 10px;
    /* top: 13px; */
  }
}
