.faq .title {
  margin-bottom: 38px;
}
.faq__item {
  position: relative;
  padding: 20px 30px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
}
@media screen and (max-width: 650px) {
  .faq__item {
    padding: 20px 15px;
  }
}
.faq__item:not(:last-child) {
  margin-bottom: 14px;
}
.faq__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #34353C;
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .faq__item-top {
    font-size: 16px !important;
    line-height: 20px;
  }
}
.faq__item-content {
  display: none;
  margin-top: 21px;
}
@media screen and (max-width: 650px) {
  .faq__item-content {
    margin-top: 16px;
  }
}
.faq__item-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
@media screen and (max-width: 650px) {
  .faq__item-content p {
    font-size: 14px;
    line-height: 21px;
  }
}
.faq__item input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.faq__item input[type=checkbox]:checked ~ .faq__item-top {
  padding-bottom: 10px;
  border-bottom: 2px solid #ffdf36;
}
@media screen and (max-width: 650px) {
  .faq__item input[type=checkbox]:checked ~ .faq__item-top {
    padding-bottom: 14px;
  }
}
.faq__item input[type=checkbox]:checked ~ .faq__item-top svg {
  transform: rotate(180deg);
}
.faq__item input[type=checkbox]:checked ~ .faq__item-content {
  display: block;
}

@media screen and (max-width: 979px) {
  .faq__item-content p {
    font-size: 14px;
    line-height: 21px;
  }
}
@media screen and (max-width: 650px) {
  .faq .title {
    margin-bottom: 14px;
  }
  .faq__item-top {
    font-size: 18px;
  }
}