.container {
  background-color: #000;
  background-image: url(/assets/img/products.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
}

.faq {
  padding: 9.1146vw 0 9.8958vw;
}

.faq>.title {
  margin: 0;
  font-size: var(--font-72);
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.faq>.subtitle {
  margin-top: 1.25vw;
  font-size: var(--font-36);
  color: #fff;
  text-align: center;
}

.filter {
  margin-top: min(3.125vw, 60px);
}

.filter .filter-item:nth-child(n + 2) {
  margin-top: 2.3438vw;
}

.filter .filter-search {
  height: 70px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 40px;
  overflow: hidden;
}

.filter .filter-search .icon-search {
  width: 40px;
  height: 40px;
}

.filter .filter-search .inp-search {
  width: 100%;
  padding: 0 30px;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: var(--font-36);
  color: #fff;
}

.filter .filter-category {
  display: flex;
  justify-content: center;
  gap: 1.25vw;
}

.filter .filter-category li {
  width: fit-content;
  height: 40px;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: #2b2b2b;
  font-size: var(--font-16);
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
}

.filter .filter-category li.active {
  background-color: #fff;
  color: #000;
  font-weight: bold;
}

.result {
  margin-top: 80px;
}

.result .list .item {
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.result .list .item:nth-child(n + 2) {
  margin-top: 20px;
}

.result .list .item .item-title {
  height: 80px;
  padding: 0 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.result .list .item .item-title .title {
  font-size: var(--font-24);
  font-weight: bold;
}

.result .list .item .item-title .icon-picker {
  width: 30px;
  aspect-ratio: 30 / 16;
  transform: rotate(-90deg);
  transition: all 0.5s;
}

.result .list .item.active .item-title .icon-picker {
  transform: rotate(0);
}

.result .list .item .item-desc {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
}

.result .list .item.active .item-desc {
  grid-template-rows: 1fr;
}

.result .list .item .item-desc .content {
  padding: 0 45px;
  min-height: 0;
  overflow: hidden;
  background-color: #efefef;
  border-radius: 0 0 30px 30px;
}

.result .list .item .item-desc .content .faq-content {
  padding: 30px 0;
  font-size: var(--font-16);
  color: #535353;
  line-height: normal;
}

.result .more {
  margin-top: 5.0521vw;
  display: flex;
  justify-content: center;
}

.result .more .btn-more {
  width: 80px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-size: var(--font-16);
  font-weight: bold;
  background-color: #fff;
  text-transform: uppercase;
}