.faq-block {
  padding: 0;

  .faq-block__title {
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .faq-item {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, .12);
    transition: all .3s ease-in;
    cursor: pointer;
  }

  .faq-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, .12);
  }

  .faq-item.active {
    padding: 20px 0 40px;
    gap: 8px;
  }

  .faq-item__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .faq-item__question {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: black;
  }

  .faq-item__icon {
    width: 24px;
    height: 24px;
    padding: 3px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: all .3s ease-in;
  }

  .faq-item__icon:before {
    content: '';
    width: 18px;
    height: 2px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    background-color: #000;
  }

  .faq-item__icon:after {
    content: '';
    height: 18px;
    width: 2px;
    border-radius: 8px;
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    background-color: #000;
    transition: all .3s ease-in;
  }

  .faq-item.active .faq-item__icon:after {
    transform: rotate(90deg);
  }

  .faq-item__content {
    height: 0;
    overflow: hidden;
    transition: height .3s ease;
    max-width: 564px;
  }

  .faq-item__answer {
    height: 0;
  }

  /*.faq-item__header {*/
  /*  font-weight: 700;*/
  /*  font-size: 20px;*/
  /*  line-height: 120%;*/
  /*  color: #000;*/
  /*}*/
}

@media(max-width: 768px) {
  .faq-block__title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}