.faqs {
  padding: 30px 0;
}

.faqs .title {
  font-weight: 900;
  margin-bottom: 16px;
}

.faqs .item:not(:last-child) {
  margin-bottom: 24px;
}

.faqs .item-title {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  padding: 6px 10px;
  background: #f8f8f8;
  font-family: 'LTSuperiorSerif-Semibold';
  cursor: pointer;
}

.faqs .item-title.active {
  color: #fff;
  background: var(--style-color);
}

.faqs .item-title i {
  display: block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 1px solid #333;
  position: relative;
}

.faqs .item-title.active i {
  border-color: #fff;
}

.faqs .item-title i::before,
.faqs .item-title i::after {
  content: '';
  position: absolute;
  background: #333;
  transition: all .3s;
}

.faqs .item-title i::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
}

.faqs .item-title i::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
}

.faqs .item-title.active i::before {
  background: #fff;
}

.faqs .item-title.active i::after {
  height: 0;
  background: #fff;
}

.faqs .item-info {
  margin-top: 8px;
  padding: 0 15px;
  line-height: 30px;
  display: none;
}

@media (min-width: 1200px) {
  .faqs {
    padding: 60px 0;
  }

  .faqs .title {
    margin-bottom: 32px;
  }

  .faqs .item-title {
    padding: 12px 16px;
  }

  .faqs .item-info {
    padding: 0 16px;
  }
}

@media (min-width: 1200px) {
  .faqs {
    padding-top: 80px;
    padding-bottom: 93px;
  }
}