/* faq
======================================= */
.faq__inner {
  padding-top: 5em;
  padding-bottom: 0em;
}
@media (max-width: 768px) {
  .faq__inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5em;
  }
}
.faq__container {
  background-color: #fff;
  padding: 5em 1.25em;
  border-radius: 10px;
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .faq__container {
    margin-bottom: 2.5em;
    padding: 2.5rem 1.25rem;
  }
}
.faq__list {
  max-width: 879px;
  margin: auto;
}
.faq__item {
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 2px solid #007CCF;
  cursor: pointer;
  overflow: hidden;
}
.faq__item:nth-child(n+2) {
  margin-top: 2.5em;
}
@media (max-width: 768px) {
  .faq__item:nth-child(n+2) {
    margin-top: 1.5em;
  }
}
.faq__item.is-open .faq__item-question {
  background-color: #007CCF;
}
.faq__item.is-open .faq__item-question-text {
  color: #fff;
}
.faq__item.is-open .faq__item-question-btn {
  background-color: #fff;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq__item.is-open .faq__item-question-btn::before {
  border-right: 2px solid #007CCF;
  border-bottom: 2px solid #007CCF;
}
@media (max-width: 768px) {
  .faq__item.is-open .faq__item-question-btn::before {
    -webkit-transform: translate(-1px, -1px) rotate(45deg);
            transform: translate(-1px, -1px) rotate(45deg);
  }
}
.faq__item-question-text {
  font-weight: 600;
  color: #007CCF;
  line-height: 1.6875;
  padding: 1.375rem 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .faq__item-question-text {
    font-size: 0.875em;
    padding: 1em;
  }
}
.faq__item-question-btn {
  display: block;
  width: 29.5px;
  height: 29.5px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: #007CCF;
  border: 1px solid #007CCF;
  border-radius: 15px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .faq__item-question-btn {
    width: 24px;
    height: 24px;
  }
}
.faq__item-question-btn::before {
  position: absolute;
  top: 7px;
  left: 9px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 768px) {
  .faq__item-question-btn::before {
    top: 6px;
    left: 7.5px;
    width: 8px;
    height: 8px;
  }
}
.faq__item-answer {
  display: none;
  padding: 2.5em 1.875em;
}
@media (max-width: 768px) {
  .faq__item-answer {
    font-size: 0.875em;
    padding: 1em;
  }
}
.faq__btn {
  margin: auto;
}