@charset "UTF-8";
@media (max-width: 500px) {
  .btn--big {
    padding: 15px 40px;
    font-size: 18px;
  }
}
.faq__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
}
.faq__item + .faq__item {
  margin-top: 1rem;
}
.faq__entry {
  background-color: #fff;
  border: 0.1rem solid #f6f7f9;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.faq__entry[open] {
  border-color: #00AEEF;
  box-shadow: 0px 3px 10px rgba(1, 1, 1, 0.08);
}
.faq__question {
  position: relative;
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 1.5rem 4rem 1.5rem 2rem;
  color: #000;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::after {
  content: "+";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: #00AEEF;
  transition: all 0.2s ease-in-out;
}
.faq__entry[open] .faq__question::after {
  content: "–";
}
.faq__answer {
  padding: 0 2rem 1.5rem;
  color: #333;
}
.faq__answer p:last-child {
  margin-bottom: 0;
}
.faq__cta {
  margin-top: 3rem;
  text-align: center;
}
