.faq__section {
  margin: 0 auto 30px;
}
.faq__section input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    left: -9999px;
}
.faq__section h3 { 
  font-size: 26px;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.faq__item {
  margin-bottom: 10px;
  display: block;
  background: #f1eeeb;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.faq__item p {
  padding-bottom: 0px;
}
.faq__title {
  border-radius: 15px;
  background: #ffffff;
  cursor: pointer;
  margin-bottom: 0;
  position: relative;
  color: #0b482c;
  font-weight: 600;
  display: block;
  min-height: 60px;
  font-size: 18px;
  padding: 20px 20px 20px 60px;
}
.faq__title::before {
  color: #ff8100;
  content: "+";
  display: block;
  text-align: center;
  position: absolute;
  top: 12px;
  font-size: 30px;
  line-height: 34px;
  text-indent: 0;
  left: 20px;
}
.faq__text {
  display: none;
}
.faq__text div {
  padding: 20px;
  font-size: 16px;
  color: #000000;
}
.faq__text div p {
  padding-bottom: 0px;
}
.faq__checkbox:checked ~ .faq__text {
  display: block;
}
.faq__checkbox:checked + .faq__label .faq__title::before {
  content: "-";
}
.faq__active .faq__title::before {
  content: "-";
}
.faq__item input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    left: -9999px;
}


@media (max-width: 1199px) {
 .faq__section h3 {
    font-size: 22px;
  }
  .faq__title {
    font-size: 16px;
    padding: 20px 10px 20px 40px;
  }
  .faq__title::before {
    font-size: 24px;
     line-height: 32px;
    left: 10px;
  }
  .faq__text div {
    padding: 15px;
  }
}
@media (max-width: 899px) {
  .faq__item {
      margin-bottom: 5px;
  }
}