/* FAQ HOME */
.faq-home {
  padding-bottom: 55px;
}

.faq-home .p1,
.faq-home .p2 {
  max-width: 900px;
}

.faq-home__accordion {
  margin-top: 26px;
}

.faq-home__item {
  background: #FFF;
  border: 1px solid #D9E2EA;
  border-radius: 20px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 53, 104, 0.05);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.faq-home__item:hover {
  border-color: #C6D4E0;
  box-shadow: 0 10px 24px rgba(0, 53, 104, 0.08);
}

.faq-home__item.is-open {
  border-color: #C6D4E0;
  box-shadow: 0 12px 28px rgba(0, 53, 104, 0.09);
}

.faq-home__question {
  width: 100%;
  border: 0;
  background: none;
  padding: 24px 72px 24px 28px;
  text-align: left;
  position: relative;
  cursor: pointer;
  color: #003568;
}

.faq-home__question:focus {
  outline: none;
}

.faq-home__question-text {
  display: block;
  font-size: 23px;
  line-height: 30px;
  font-weight: 700;
}

.faq-home__icon {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #F3F7FA;
}

.faq-home__icon:before,
.faq-home__icon:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: #DB0187;
  transition: all 0.25s ease;
}

.faq-home__icon:before {
  width: 16px;
  height: 2px;
  margin-left: -8px;
  margin-top: -1px;
}

.faq-home__icon:after {
  width: 2px;
  height: 16px;
  margin-left: -1px;
  margin-top: -8px;
}

.faq-home__item.is-open .faq-home__icon:after {
  opacity: 0;
}

.faq-home__answer {
  padding: 0 28px 26px 28px;
}

.faq-home__answer-inner {
  max-width: 980px;
  color: #003568;
  font-size: 16px;
  line-height: 27px;
}

.faq-home__answer-inner p {
  margin: 0;
}

.faq-home__answer-inner p + p {
  margin-top: 15px;
}

.faq-home__answer-inner a {
  color: #DB0187;
  text-decoration: underline;
  opacity: 1;
  transition: all 0.4s ease;
}

.faq-home__answer-inner a:hover {
  opacity: 0.8;
}

@media (max-width: 767px) {
  .faq-home {
    padding-bottom: 30px;
  }

  .faq-home__accordion {
    margin-top: 20px;
  }

  .faq-home__item {
    border-radius: 16px;
    margin-bottom: 12px;
  }

  .faq-home__question {
    padding: 18px 56px 18px 18px;
  }

  .faq-home__question-text {
    font-size: 19px;
    line-height: 25px;
  }

  .faq-home__answer {
    padding: 0 18px 20px 18px;
  }

  .faq-home__answer-inner {
    font-size: 15px;
    line-height: 24px;
  }

  .faq-home__icon {
    right: 14px;
    width: 30px;
    height: 30px;
  }
}