.section__faqs {
  padding: 40px 20px;
  background-color: #f5f5f5;
}

.faqs {
  max-width: 1170px;
  color: #4d4d4d;
  margin: 0 auto;
}

.faqs__title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 30px;
  text-align: center;
}

.faqs__title strong {
  font-size: inherit;
  line-height: inherit;
  color: #00A9E0;
}

.faq {
  width: 100%;
  background: #f5f5f5;
  padding: 0 22px;
  margin-top: 20px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  line-height: 1.2em;
  border-bottom: 1px solid #979797;
}

.faq__arrow {
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #00A9E0;
  border-left: 1px solid #00A9E0;
  margin-right: 5px;
  display: inline-block;
  transform: rotate(-45deg);
  transition: all .5s;
}

.faq.active .faq__arrow {
  transform: rotate(-225deg);
}

.faq__question {
  width: calc(100% - 40px);
  font-size: 16px;
  margin: 0;
  height: 76px;
  color: #505D68;
  display: flex;
  align-items: center;
  font-weight: 400;
}

.faq__answer {
  padding-bottom: 25px;
  display: block;
}

.faq__answer p,
.faq__answer li {
  font-size: 16px;
  margin: 0 0 10px;
}

.faq__answer li {
  list-style: none;
  position: relative;
  padding-left: 15px;
}

.faq__answer li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #019df4;
  border-radius: 50px;
}

.faq__answer a {
  color: #00A9E0;
}

.textFaqs {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2em;
}

@media only screen and (min-width: 768px) {
  .faqs__title {
    font-size: 24px;
  }

  .faqs__title br {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  .faqs__title {
    font-size: 28px;
  }
}