.block-faq__info {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.block-faq__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.block-faq__item {
  width: 100%;
  border-radius: 12px;
  padding: 30px;
  background: #f8f8f8;
}
.block-faq__item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
  cursor: pointer;
}
.block-faq__item-head .block-title {
  margin-bottom: 0;
}
.block-faq__item-head .block-title * {
  text-transform: none;
}
.block-faq__item-head:after {
  content: "";
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  background-image: url(/res/test/icon-faq-arrow.svg);
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  transition: 0.3s all;
  cursor: pointer;
  flex: none;
}
.block-faq__item-content {
  margin-top: 0;
  max-height: 0px;
  overflow: hidden;
  transition: 0.3s all;
}
.block-faq__item-content.block-text {
  color: #5f6877;
}
.block-faq__item-author {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.block-faq__item-author img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 50%;
  flex: none;
}
.block-faq__item-author-name {
  color: #404557;
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .block-faq__item-author-name {
    font-size: 10px;
    line-height: 15px;
  }
}
.block-faq__item-author-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.block-faq__item-author-job {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .block-faq__item-author-job {
    font-size: 10px;
    line-height: 15px;
  }
}
.block-faq__item-author-job {
  color: #5f6877;
}
.block-faq__item-author:hover .block-faq__item-author-name {
  color: #0fa1ef;
}
.block-faq__item.is-open .block-faq__item-content {
  margin-top: 30px;
  max-height: 100vh;
  overflow: visible;
}
.block-faq__item.is-open .block-faq__item-head:after {
  transform: rotate(45deg);
}
.block-faq__more {
  color: #0086c1;
  font-size: 16px;
  line-height: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .block-faq__more {
    font-size: 14px;
  }
}
.block-faq__more {
  cursor: pointer;
  display: flex;
  gap: 5px;
  align-items: center;
  border: none;
  outline: none;
  padding: 0;
  background: transparent;
}
.block-faq__more:after {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/res/test/icon-faq-more.svg);
  transition: 0.3s all;
  transform: rotate(0);
}
.block-faq__more:hover:after {
  transform: rotate(-90deg);
}
.block-faq__more.is-expanded:after {
  transform: rotate(-90deg);
}
.block-faq__more.is-expanded:hover:after {
  transform: rotate(-180deg);
}
@media (max-width: 991px) {
  .block-faq__info {
    height: auto;
  }
  .block-faq__item {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .block-faq__item-head {
    gap: 10px;
  }
  .block-faq__item-head:after {
    width: 44px;
    height: 44px;
  }
  .block-faq__item-author {
    gap: 15px;
  }
  .block-faq__item-author img {
    width: 40px;
    height: 40px;
  }
}/*# sourceMappingURL=faq.css.map */