.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: 16vw 0 9.2vw;
}

.faq > .title {
  margin: 0;
  font-size: var(--font-50);
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.faq > .subtitle {
  margin-top: 2.4vw;
  font-size: var(--font-25);
  color: #fff;
  text-align: center;
}

.filter {
  margin-top: 6vw;
  padding: 0 7.2vw;
}

.filter .filter-item:nth-child(n + 2) {
  margin-top: 4vw;
}

.filter .filter-search {
  height: 6.6667vw;
  padding: 0 2vw;
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 3.2vw;
  overflow: hidden;
}

.filter .filter-search .icon-search {
  width: 4vw;
  height: 4vw;
}

.filter .filter-search .inp-search {
  width: 100%;
  padding: 0 4vw;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: var(--font-25);
  color: #fff;
}

.filter .filter-category {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25vw;
}

.filter .filter-category li {
  width: fit-content;
  height: 4.8vw;
  padding: 0 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-color: #2b2b2b;
  font-size: var(--font-16);
  color: #fff;
  cursor: pointer;
}

.filter .filter-category li.active {
  background-color: #fff;
  color: #000;
  font-weight: bold;
}

.result {
  margin-top: 6vw;
}

.result .list {
  padding: 0 7.2vw;
}

.result .list .item {
  background-color: #fff;
  border-radius: 2.8vw;
  overflow: hidden;
}

.result .list .item:nth-child(n + 2) {
  margin-top: 2vw;
}

.result .list .item .item-title {
  height: 7.4667vw;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.result .list .item .item-title .title {
  font-size: var(--font-17);
  font-weight: bold;
}

.result .list .item .item-title .icon-picker {
  width: 2.9333vw;
  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 4vw;
  min-height: 0;
  overflow: hidden;
  background-color: #efefef;
  border-radius: 0 0 2.8vw 2.8vw;
}

.result .list .item .item-desc .content .faq-content {
  padding: 2.8vw 0;
  font-size: var(--font-12);
  color: #535353;
  line-height: normal;
}

.result .more {
  margin-top: 8vw;
  display: flex;
  justify-content: center;
}

.result .more .btn-more {
  width: 26.5333vw;
  height: 4.8vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.2667vw;
  font-size: var(--font-25);
  font-weight: bold;
  background-color: #fff;
}
