.faq {
  padding: 10px 0;
  background: url("../images_fon/fon_header.jpg") center/cover no-repeat;
}

.faq__title {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.faq__list {
  max-width: 740px;
  background: #fff;
  margin-left: 23%;
  margin-right: 10%;
  background: url("../images_fon/fon_header.jpg") center/cover no-repeat;
  background: #021118;	
}

.faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: 0.3s;
}

.faq__item:hover {
  border-color: rgba(0,0,0,0.2);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  padding-left: 15px;
  font-size: 24px;
  color: #00D4FF;

  display: flex;
  justify-content: left;   /*  space-between; */
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq__question span {
  max-width: 90%;
}

.faq__arrow {
  width: 18px;
  height: 18px;
  stroke: #333;
  stroke-width: 1.5;
  fill: none;
  transition: transform 0.4s ease;
  color: #fff;
}

.faq__item.active .faq__arrow {
  transform: rotate(180deg);
  color: #fff;

}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding-left: 15px;
  color: #fff;
  text-align: left;
}

.faq__answer p {
  padding-bottom: 20px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
}


.faq__arrow {
  width: 40px;
  height: 40px;
  stroke: #fff;        /* < вот это главное */
  fill: none;          /* чтобы не было заливки */
  stroke-width: 2;
}

@media (max-width: 600px) {
  .faq__list {
    margin-left: 10%;
  margin-right: 10%;  }
}