.qas, .qasd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  width: 100%;
  overflow: hidden;
}
.qas .qa, .qasd .qa {
  width: 100%;
  display: flex;
  padding: 0;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid #CFCFCF;
  background: #FFF;
  overflow: hidden;
  max-height: max-content;
  padding: 24px;
}
.qas .qa__question, .qasd .qa__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 5px;
  color: #000;
  font-size: 16px;
  font-weight: 800;
  line-height: 22px;
}
@media (min-width: 992px) {
  .qas .qa__question, .qasd .qa__question {
    font-size: 22px;
  }
}
.qas .qa__question i, .qasd .qa__question i {
  flex-grow: 0;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.qas .qa__answer, .qasd .qa__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.4s ease;
  opacity: 0;
  margin-top: 0;
}
.qas .qa__answer p, .qasd .qa__answer p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
@media (min-width: 992px) {
  .qas .qa__answer p, .qasd .qa__answer p {
    color: #000;
    font-size: 16px;
    line-height: 31px;
    letter-spacing: -0.32px;
  }
}
.qas .qa--open .qa__answer, .qasd .qa--open .qa__answer {
  max-height: 1500px;
  opacity: 1;
  margin-top: 15px;
}
.qas .qa--open .qa__question i, .qasd .qa--open .qa__question i {
  transform: rotate(45deg);
}

/*# sourceMappingURL=style.css.map */
