.faq {
  padding: 30px 0;
}

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

.faq .sub-info {
  color: #ccc;
  text-align: center;
  margin-bottom: 20px;
}

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

.faq .item-title {
  padding: 7px 15px;
  font-weight: bold;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

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

.faq .item-title i {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  margin-left: 15px;
  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;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
}

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

.faq .item-title i::before {
  width: 2px;
  height: 50%;
  transition: height .3s;
}

.faq .item-title.active i::before {
  height: 0;
}

.faq .item-title i::after {
  width: 50%;
  height: 2px;
}

.faq .item-info {
  padding: 10px 15px;
  display: none;
}

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

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

  .faq .sub-info {
    margin-bottom: 30px;
  }

  .faq .item-title {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media (min-width: 1440px) {
  .faq {
    padding-bottom: 80px;
  }
}