
body {
  background-color: #fff;

}

.wrapper {
  width: 100%;
}

h1 {
  margin-bottom: 20px;
}

.container2 {
  background-color: #aae3e6;
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
  margin: 20px 0;
  direction: rtl;
}

.question {
  font-size: .93rem;
  font-weight: 600;
  padding: 20px  20px 20px 80px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #234567;

}

.question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  left: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
  color: #234567;
}

.question.active+.answercont {}

@media screen and (max-width: 790px) {
  html {
    font-size: 14px;
  }

  .wrapper {
    width: 80%;
  }
}