.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.faq-list__accordion {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 4rem;
  border: 0.1rem solid var(--c-white-transparent-024);
  border-radius: 2.4rem;
  background: var(--c-white-transparent-016);
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  transition: border-color 0.5s ease-in-out;
  font-family: var(--font-family-primary);
  font-size: 2.4rem;
  color: var(--secondary-text-color);
  font-weight: 300;
  line-height: 3.4rem;
}
@media screen and (max-width: 450px) {
.faq-list__accordion {
    padding: 2rem;
    border-radius: 1.6rem;
    font-size: 1.2rem;
    line-height: 1.7rem;
}
}
@media screen and (min-width: 451px) and (max-width: 767px) {
.faq-list__accordion {
    padding: 2.5rem 2.3rem;
    border-radius: 1.8rem;
    font-size: 1.6rem;
    line-height: 2.4rem;
}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
.faq-list__accordion {
    padding: 3rem;
    border-radius: 2rem;
    font-size: 2rem;
    line-height: 3rem;
}
}
.faq-list__accordion:hover {
  border-color: var(--block-border-hover);
  cursor: pointer;
}
.faq-list__accordion:hover svg path {
  stroke: var(--c-green-dark);
}
.faq-list__accordion svg path {
  transition: stroke 0.5s ease-in-out;
}
.faq-list__item-text {
  margin-top: 2.4rem;
}
@media screen and (max-width: 450px) {
.faq-list__item-text {
    margin-top: 0.8rem;
}
}
@media screen and (min-width: 451px) and (max-width: 767px) {
.faq-list__item-text {
    margin-top: 1rem;
}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
.faq-list__item-text {
    margin-top: 1.4rem;
}
}
.faq-list__item-title {
  font-family: var(--font-family-primary);
  font-size: 3.2rem;
  color: var(--secondary-text-color);
  font-weight: 600;
  line-height: 4rem;
}
@media screen and (max-width: 450px) {
.faq-list__item-title {
    font-size: 1.6rem;
    line-height: 2.2rem;
}
}
@media screen and (min-width: 451px) and (max-width: 767px) {
.faq-list__item-title {
    font-size: 2.2rem;
    line-height: 2.7rem;
}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
.faq-list__item-title {
    font-size: 2.8rem;
    line-height: 3.4rem;
}
}
@media screen and (max-width: 1024px) {
.faq-list__item-title {
    font-weight: 400;
}
}.faq-container {
  width: 100%;
  height: 100%;
  padding-bottom: 23rem;
  background: var(--c-gray-darkest);
}
@media screen and (max-width: 1024px) {
.faq-container {
    padding-bottom: 8rem;
}
}
.faq-container__title-wr {
  font-family: var(--font-family-primary);
  font-size: 4rem;
  color: white;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
}
@media screen and (max-width: 450px) {
.faq-container__title-wr {
    font-size: 4rem;
    font-weight: 700;
}
}
@media screen and (max-width: 767px) {
.faq-container__title-wr {
    font-weight: 700;
}
}
@media screen and (min-width: 451px) and (max-width: 1024px) {
.faq-container__title-wr {
    font-size: 6rem;
}
}
@media screen and (min-width: 1025px) {
.faq-container__title-wr {
    font-size: clamp(4rem, 4rem + (140 - 48) * (100vw - 82rem) / (1728 - 1440), 14rem);
}
}
@media screen and (max-width: 767px) {
.faq-container__title-wr {
    padding-top: 6rem;
    padding-bottom: 4rem;
}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
.faq-container__title-wr {
    padding-top: 0;
    padding-bottom: 4rem;
    font-weight: 700;
}
}
@media screen and (min-width: 1025px) {
.faq-container__title-wr {
    padding-top: 12rem;
    padding-bottom: 6rem;
    font-weight: 600;
    font-size: 18rem;
}
}
.faq-container__title {
  transform: translateY(5rem);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s, transform 0.5s;
  transition-timing-function: ease-in-out;
}
._active .faq-container__title {
  transform: translateY(0);
  opacity: 1;
}