.faq {
  padding: 160px 0 109px;
}
@media screen and (max-width: 1250px) {
  .faq {
    padding: 80px 0;
  }
}
.faq .container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 850px) {
  .faq .container {
    flex-direction: column;
    gap: 30px;
  }
}
.faq .container .questions_title .h2 {
  font-family: "TT Runs Trial", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 100%;
  text-transform: uppercase;
  color: #0e0e0e;
}
.faq .container .questions_all {
  width: 50%;
}
@media screen and (max-width: 850px) {
  .faq .container .questions_all {
    width: 100%;
  }
}
.faq .container .questions_item_title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  color: #0e0e0e;
  padding: 40px 0;
  border-bottom: 1px solid rgba(14, 14, 14, 0.2);
}
@media screen and (max-width: 1050px) {
  .faq .container .questions_item_title {
    font-size: 18px;
    padding: 16px;
  }
}
.faq .container .questions_item_title.first {
  padding-top: 0;
}
.faq .container details summary {
  cursor: pointer;
  transition: 0.5s ease-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq .container details[open] summary {
  margin-bottom: 10px;
  border-bottom: none;
}
.faq .container .n_questions summary::before,
.faq .container .n_questions summary::after {
  top: 20px;
}
.faq .container .questions_item_text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #0e0e0e;
  padding: 28px 16px;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1050px) {
  .faq .container .questions_item_text {
    font-size: 14px;
    padding: 12px;
  }
}
.faq .container .questions_span {
  height: 27px;
  width: 27px;
  aspect-ratio: 1/1;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 1050px) {
  .faq .container .questions_span {
    height: 18px;
    width: 18px;
  }
}
.faq .container .questions_span::after,
.faq .container .questions_span::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #0e0e0e;
  position: absolute;
  transition: 0.3s;
}
.faq .container .questions_span::before {
  transform: rotate(90deg);
}
.faq .container [open] summary .questions_span::before,
.faq .container [open] summary .questions_span::after {
  transform: rotate(0);
}/*# sourceMappingURL=faq.css.map */