/*!*************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js!./scss/blocks/faq.scss ***!
  \*************************************************************************************************************************************************************************************/
.faq-block {
  padding: 40px 0 64px;
}
@media screen and (max-width: 599px) {
  .faq-block {
    padding: 24px 0 32px;
  }
}
.faq-block__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0 0;
}
@media screen and (max-width: 599px) {
  .faq-block__list {
    gap: 16px;
    margin: 16px 0 0;
  }
}
.faq-block__item {
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
  background: #F5F5F5;
  padding: 24px;
}
.faq-block__item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.faq-block__answer {
  position: relative;
}
.faq-block__answer p {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 26px;
  text-align: justify;
  max-width: 93%;
}
@media screen and (max-width: 599px) {
  .faq-block__answer p {
    font-size: 17px;
    line-height: 26px;
    max-width: unset;
  }
}
.faq-block__part {
  color: #333;
  line-height: 1.5;
}
.faq-block__part--hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-block__part--visible {
  margin-bottom: 8px;
}
.faq-block__toggle {
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  padding: 0;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 46px;
  color: #1F1F1F;
  margin: 0 0 16px;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .faq-block__toggle {
    font-size: 24px;
    line-height: 32px;
    align-items: flex-start;
  }
}
.faq-block__toggle .icons {
  position: relative;
  display: flex;
  width: 32px;
  height: 32px;
}
.faq-block__toggle .icons svg {
  transition: 0.3s all;
}
.faq-block__toggle .icons svg.minus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.faq-block__item.active .icons {
  position: relative;
}
.faq-block__item.active .icons svg {
  transition: 0.3s all;
}
.faq-block__item.active .icons svg.plus {
  opacity: 0;
}
.faq-block__item.active .icons svg.minus {
  opacity: 1;
}
.faq-block__item.active .faq-block__part--hidden {
  max-height: 1000px;
}
