.section_faq {
  padding: 16.2rem 0 14.8rem;
}
.section_faq h1 {
  text-align: center;
  font-weight: 500;
  font-size: 6.4rem;
}
.section_faq form {
  max-width: 64.5rem;
  margin: 3.2rem auto 0;
  position: relative;
}
.section_faq form input[type="text"] {
  width: 100%;
  height: 5.8rem;
  display: block;
  font-size: 2rem;
  transition: all 0.3s;
  border-radius: 0.8rem;
  border: 1px solid #C8C8CA;
  outline: 1px solid transparent;
  padding: 0 8.5rem 0 2.5rem;
  color: #000;
}
.section_faq form input[type="text"]::placeholder {
  color: #7C766E;
}
.section_faq form input[type="text"]:focus {
  border-color: var(--primary);
  outline-color: var(--primary);
}
.section_faq form label {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.8rem;
  height: 5.8rem;
  transition: all 0.3s;
  border-radius: 0.8rem;
  background-color: var(--primary);
}
.section_faq form label:hover::after {
  filter: contrast(0) brightness(0);
}
.section_faq form label::after {
  content: '';
  display: block;
  width: 45%;
  height: 45%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
.section_faq form label input {
  display: none;
}
.section_faq .main {
  display: grid;
  gap: 10.5rem 3.900156%;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 13.6rem;
}
.section_faq .item.full {
  grid-column: 1 / -1;
}
.section_faq .faq_list {
  margin-top: 1rem;
}
.section_faq .faq_list .faq_item {
  border-bottom: 1px solid rgba(205, 181, 107, 0.5);
}
.section_faq .faq_list .faq_item.active .question {
  color: var(--primary);
}
.section_faq .faq_list .faq_item.active .question::after {
  transform: rotate(135deg);
}
.section_faq .faq_list .question {
  cursor: pointer;
  font-weight: 500;
  font-size: 2.2rem;
  transition: all 0.3s;
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  padding: 1.6rem 0 2rem;
}
.section_faq .faq_list .question::after {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  transition: all 0.3s;
  background: url(../img/icon-plus.svg) no-repeat center / contain;
}
.section_faq .faq_list .answer {
  font-size: 1.8rem;
  line-height: 2.7rem;
  padding-bottom: 2.8rem;
  display: none;
}
.section_faq .center {
  display: none;
}
@media screen and (max-width: 768px) {
  .section_faq {
    padding: 50px 0 64px;
  }
  .section_faq h1 {
    color: var(--primary);
    font-size: 30px;
  }
  .section_faq form {
    margin-top: 16px;
  }
  .section_faq form input[type="text"] {
    height: 43px;
    font-size: 13.35px;
    padding: 0 80px 0 18px;
    border-radius: 4px;
    border-color: rgba(246, 239, 211, 0.1);
    background-color: rgba(246, 239, 211, 0.1);
  }
  .section_faq form label {
    width: 43px;
    height: 43px;
  }
  .section_faq .main {
    gap: 50px 30px;
    margin-top: 46px;
  }
  .section_faq .faq_list .faq_item.active .question::after {
    transform: rotate(270deg);
  }
  .section_faq .faq_list .question {
    font-size: 16px;
  }
  .section_faq .faq_list .question::after {
    transform: rotate(90deg);
    background-image: url(../img/arrow-r.svg);
  }
  .section_faq .faq_list .answer {
    font-size: 14px;
    line-height: 22px;
  }
}
@media screen and (max-width: 576px) {
  .section_faq .main {
    grid-template-columns: 1fr;
  }
  .section_faq .head h2 {
    font-size: 16px;
  }
  .section_faq .head .more {
    display: none;
  }
  .section_faq .center {
    display: block;
    margin-top: 30px;
  }
}
