.faq-v2 {
  background: #fff;
  padding: 50px 0 50px;
}

.faq-v2__title {
  margin: 0 0 29px;
  color: #212121;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.faq-v2__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.faq-v2__list--3 {
  display: none;
}

.faq-v2__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-v2__item {
  border-radius: 10px;
  background: #f0f0f0;
}

.faq-v2__question {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  cursor: pointer;
  text-align: left;
}

.faq-v2__question-text {
  color: #212121;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
}

.faq-v2__icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #fcba1d;
  position: relative;
}

.faq-v2__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #212121;
  border-bottom: 1.5px solid #212121;
  transform: translate(-50%, -62%) rotate(45deg);
}

.faq-v2__item.is-open .faq-v2__icon::before {
  transform: translate(-50%, -36%) rotate(-135deg);
}

.faq-v2__answer {
  position: relative;
  margin: 0 10px 0 7px;
  padding: 0 12px;
  border-radius: 2px 10px 10px 2px;
  background: #fff;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.28s ease, opacity 0.2s ease, margin 0.28s ease, padding 0.28s ease;
}

.faq-v2__item.is-open .faq-v2__answer {
  max-height: 1200px;
  margin: 0 10px 12px 7px;
  padding: 10px 12px;
  opacity: 1;
  pointer-events: auto;
}

.faq-v2__answer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #fcba1d;
}

.faq-v2__answer p,
.faq-v2__answer ul,
.faq-v2__answer ol {
  margin: 0;
  color: #212121;
  font-size: 10px;
  font-weight: 300;
  line-height: 1.35;
}

.faq-v2__answer p + p,
.faq-v2__answer p + ul,
.faq-v2__answer p + ol,
.faq-v2__answer ul + p,
.faq-v2__answer ol + p {
  margin-top: 0.5em;
}

.faq-v2__answer ul,
.faq-v2__answer ol {
  padding-left: 1.15em;
}

.faq-v2__answer li + li {
  margin-top: 0.35em;
}

@media (min-width: 768px) {
  .faq-v2 {
    padding: 43px 0 43px;
}

  .faq-v2__title {
    margin-bottom: 37px;
  }

  .faq-v2__list {
    gap: 16px;
  }

  .faq-v2__col {
    gap: 20px;
  }

  .faq-v2__question {
    min-height: 65px;
    padding: 10px 20px;
  }

  .faq-v2__question-text {
    font-size: 18px;
    line-height: 1.1;
  }

  .faq-v2__icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }

  .faq-v2__icon::before {
    width: 8px;
    height: 8px;
  }

  .faq-v2__answer {
    margin: 0 20px 0;
    padding: 0 14px;
  }

  .faq-v2__item.is-open .faq-v2__answer {
    margin: 0 20px 20px;
    padding: 10px 14px;
  }

  .faq-v2__answer p,
  .faq-v2__answer ul,
  .faq-v2__answer ol {
    font-size: 16px;
    line-height: 20px;
  }
}

@media (min-width: 1200px) {
  .faq-v2 {
    padding: 40px 0 40px;
  }

  .faq-v2__title {
    margin-bottom: 32px;
  }

  .faq-v2__list {
    gap: 20px;
  }

  .faq-v2__list--2 {
    display: none;
  }

  .faq-v2__list--3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-v2__question {
    min-height: 65px;
    padding: 10px 16px;
  }

  .faq-v2__question-text {
    line-height: 1.2;
  }
}

@media (min-width: 1920px) {
  .faq-v2 {
    padding: 70px 0 70px;
  }

  .faq-v2__title {
    font-size: 35px;
    margin-bottom: 25px;
  }

  .faq-v2__question {
    min-height: 74px;
    padding: 10px 25px;

  }

  .faq-v2__question-text {
    font-size: 22px;
  }

  .faq-v2__list {
    gap: 21px;
  }
 
  .faq-v2__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }


  .faq-v2__item.is-open .faq-v2__answer {
    margin: 0 25px 25px 25px;
    padding: 12px 25px;
  }

  .faq-v2__answer p,
  .faq-v2__answer ul,
  .faq-v2__answer ol {
    font-size: 18px;
  }
}
