.faqs {
  padding: 30px 0;
}

.faqs .title {
  margin-bottom: 30px;
  font-family: 'Montserrat-ExtraBold';
}

.faqs .item {
  padding-bottom: 20px;
  border-bottom: 1px solid #232323;
}

.faqs .item:not(:last-child) {
  margin-bottom: 20px;
}

.faqs .item-title {
  font-family: 'Montserrat-Bold';
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faqs .item-title.active {
  color: var(--style-color);
}

.faqs .item-title span {
  width: 35px;
  height: 35px;
  color: #fff;
  border-radius: 6px;
  background: var(--style-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faqs .item-title p {
  flex: 1;
  padding: 0 15px;
}

.faqs .item-title i {
  width: 18px;
  height: 18px;
  position: relative;
}

.faqs .item-title.active i {
  border-color: #fff;
}

.faqs .item-title i::before,
.faqs .item-title i::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}

.faqs .item-title.active i::before,
.faqs .item-title.active i::after {
  background: var(--style-color);
}

.faqs .item-title i::before {
  width: 3px;
  height: 100%;
  transition: height .3s;
}

.faqs .item-title.active i::before {
  height: 0;
}

.faqs .item-title i::after {
  width: 100%;
  height: 3px;
}

.faqs .item-info {
  color: #CDCDCE;
  margin-top: 15px;
  margin-left: 50px;
  margin-bottom: -3px;
  display: none;
}

@media (min-width: 1200px) {
  .faqs {
    padding: 60px 0 66px;
  }

  .faqs .title {
    margin-bottom: 60px;
  }

  .faqs .item {
    padding-bottom: 30px;
  }

  .faqs .item:not(:last-child) {
    margin-bottom: 30px;
  }

  .faqs .item-title span {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }

  .faqs .item-title p {
    padding: 0 20px;
  }

  .faqs .item-title i {
    width: 27px;
    height: 27px;
  }

  .faqs .item-title i::before {
    width: 5px;
  }

  .faqs .item-title i::after {
    height: 5px;
  }

  .faqs .item-info {
    margin-top: 23px;
    margin-left: 65px;
  }
}

@media (min-width: 1440px) {
  .faqs {
    padding-top: 100px;
  }
}