.faq {
  padding: 30px 0;
}

.faq .title {
  font-weight: 900;
  margin-bottom: 16px;
}

.faq .item:not(:last-child) {
  margin-bottom: 24px;
}

.faq .item-title {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  padding: 6px 10px;
  background: #f8f8f8;
  cursor: pointer;
}

.faq .item-title.active {
  color: #fff;
  background: var(--style-color);
}

.faq .item-title i {
  display: block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 1px solid #333;
  position: relative;
}

.faq .item-title.active i {
  border-color: #fff;
}

.faq .item-title i::before,
.faq .item-title i::after {
  content: '';
  position: absolute;
  background: #333;
  transition: all .3s;
}

.faq .item-title i::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
}

.faq .item-title i::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
}

.faq .item-title.active i::before {
  background: #fff;
}

.faq .item-title.active i::after {
  height: 0;
  background: #fff;
}

.faq .item-info {
  margin-top: 8px;
  padding: 0 10px;
  display: none;
}

.faq .item-info ul {
  padding-left: 20px;
}

@media (min-width: 1200px) {
  .faq {
    padding: 64px 0;
  }

  .faq .title {
    margin-bottom: 32px;
  }

  .faq .item-title {
    font-size: 18px;
    padding: 12px 16px;
  }

  .faq .item-info {
    padding: 0 16px;
  }

}