.faq-v2 {
  padding: 100px 0;
  background-color: #fff;
}
.faq-v2 .container {
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .faq-v2 {
    padding: 40px 0 100px 0;
  }
}
.faq-v2__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.faq-v2 .title {
  width: 100%;
  color: var(--primaryColor);
  font-weight: 700;
  text-align: center;
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 50px;
  text-align: center;
}
@media (min-width: 1146px) {
  .faq-v2 .title {
    font-size: 55px;
    line-height: 74px;
  }
}
.faq-v2__items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}
.faq-v2__items .col {
  min-width: 280px;
  flex: 1 0 calc(50% - 50px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}
.faq-v2__items .item {
  width: 100%;
  min-height: 120px;
  padding: 25px 35px;
  background-color: var(--primaryColor);
  border-radius: 20px;
  display: block;
}
.faq-v2__items .item[open] .title > * {
  margin-bottom: 25px;
  color: #fff;
}
.faq-v2__items .item .title {
  margin-bottom: 0;
  color: #FFF;
  text-align: left;
  height: 70px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faq-v2__items .item .title {
    height: 80px;
  }
}
.faq-v2__items .item .title::marker {
  content: none;
}
.faq-v2__items .item .title > * {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: #FFF;
}
.faq-v2__items .item .content {
  margin-bottom: 50px;
  color: #fff;
}
.faq-v2__items .item .content a {
  color: #F3C531;
}
