.block-faq {
  padding: 60px 0;
}
.block-faq.bg-gray {
  border-top: solid 1px rgba(var(--color-black), 0.08);
  border-bottom: solid 1px rgba(var(--color-black), 0.08);
  background-color: rgba(var(--color-black), 0.03);
}
.block-faq .inner {
  padding: 0 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 64px;
}
.block-faq .heading .tagline {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 10px;
}
.block-faq .heading .arrow-button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 28px;
}
.block-faq .heading .h2 {
  margin: 0;
}
.block-faq .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 16px;
}
.block-faq .item {
  border: solid 1px rgba(var(--color-black), 0.08);
  border-radius: 48px;
  overflow: hidden;
  background-color: rgba(var(--color-black), 0.03);
}
.block-faq .item .item-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #fff;
  padding: 16px;
  border-radius: 48px;
  cursor: pointer;
  min-height: 92px;
}
.block-faq .item .item-question picture {
  display: none;
}
.block-faq .item .item-question .h3 {
  margin: 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.block-faq .item .item-question .icon {
  display: block;
  width: 20px;
  height: auto;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.block-faq .item .item-answer {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.block-faq .item .item-answer .h3 {
  color: rgba(var(--color-black), 0.7);
  padding: 24px 40px 24px 24px;
  margin: 0;
  font-weight: 500;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}
.block-faq .item.open .item-question .h3 {
  color: rgba(var(--color-accent), 1);
}
.block-faq .item.open .item-question .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.block-faq .item.open .item-answer {
  max-height: 1000vh;
}
@media (width >= 800px) {
  .block-faq {
    padding: 80px 0;
  }
  .block-faq .inner {
    padding: 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    gap: 40px;
  }
  .block-faq .heading, .block-faq .items {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .block-faq .item .item-question picture {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
  }
  .block-faq .item .item-question picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .block-faq .item .item-answer .h3 {
    padding-left: 92px;
    padding-right: 40px;
    padding-top: 28px;
    padding-bottom: 32px;
  }
}