#faq {
  overflow: hidden;
}
#faq::before {
  content: '';
  position: absolute;
  width: 40vmax;
  height: 40vmax;
  border-radius: 40vmax;
  background-color: var(--primaryLight);
  opacity: 0.5;
  z-index: -10;
  left: -10%;
  bottom: 0;
  transform: translateX(-40%) translateY(20%);
}

@media (max-width: 32rem) {
  #faq::before {
    top: 40%;
  }
}

.description-text {
  margin-bottom: 2em;
}

/* MORE INFORMATION */
.info-box {
  overflow: hidden;
  height: auto;
}

.info-box .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem;
}

.info-box .header .title {
  font-weight: 700;
}

.info-box .header .down-arrow {
  transition: transform 0.3s ease;
}

.info-box.opened .header .down-arrow {
  transform: rotate(180deg);
}

.faq-qns .info-box {
  padding: .5rem 0;
  position: relative;
}

.faq-qns .info-box::before {
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: var(--headerColor);
  position: absolute;
  top: 0;
}

.faq-qns .info-box:last-child::after {
  content: "";
  width: 100%;
  height: 1.5px;
  background-color: var(--headerColor);
  position: absolute;
  bottom: 0;
  left: 0;
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.info-box.opened .content {
  max-height: 400px;
}