/**
 * The base file that should be imported by every file.
 * There should be no CSS generation in this or from imported scss files at all!
 */
/**
 * Library
 */
/**
 * Variables and functions
 */
.section-faq .faq-title h1, .section-faq .faq-title h2, .section-faq .faq-title h3 {
  margin-bottom: 30px;
  text-align: center; }
  @media (min-width: 981px) {
    .section-faq .faq-title h1, .section-faq .faq-title h2, .section-faq .faq-title h3 {
      margin-bottom: 50px;
      text-align: left; } }

.section-faq .faq-group .questions {
  display: flex;
  flex-direction: column;
  gap: 20px; }
  @media (min-width: 981px) {
    .section-faq .faq-group .questions {
      flex-direction: row;
      flex-wrap: wrap; }
      .section-faq .faq-group .questions .item {
        flex: 1 1 calc(50% - 10px);
        height: 100%;
        max-width: calc(50% - 10px); } }

.section-faq .faq-group .item {
  background-color: var(--white);
  border-radius: 15px;
  position: relative;
  padding: 20px; }
  .section-faq .faq-group .item .question {
    cursor: pointer;
    padding-right: 60px;
    line-height: 1.25;
    font-size: 16px;
    font-weight: 600; }
    .section-faq .faq-group .item .question .icon {
      background-color: var(--night);
      color: var(--white);
      width: 40px;
      height: 40px;
      border-radius: 10px;
      position: absolute;
      top: 10px;
      right: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: rotate(90deg);
      transition: ease-in-out 200ms background-color; }
      .section-faq .faq-group .item .question .icon span {
        font-size: 8px;
        transition: ease-in-out 200ms transform; }
    .section-faq .faq-group .item .question.open .icon {
      background-color: var(--orange); }
      .section-faq .faq-group .item .question.open .icon span {
        transform: rotate(180deg); }
  .section-faq .faq-group .item .answer {
    display: none; }
    .section-faq .faq-group .item .answer p {
      color: var(--text-color); }
      .section-faq .faq-group .item .answer p:last-child {
        margin-bottom: 0; }
    .section-faq .faq-group .item .answer a.link {
      color: var(--orange);
      margin-top: 15px; }

.section-faq .faq-group .links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px; }
  @media (min-width: 981px) {
    .section-faq .faq-group .links {
      max-width: 350px;
      margin: 30px auto 0 auto; } }
  .section-faq .faq-group .links .link .btn {
    width: 100%; }

.section-faq .faq-group .member-btn {
  margin-top: 30px;
  display: flex;
  justify-content: center; }

.section-faq.dark .questions .item .answer a {
  color: var(--lightblue); }
  .section-faq.dark .questions .item .answer a:hover {
    color: var(--blue-darken); }

/*# sourceMappingURL=faq.css.map */
