

.faq-container {
  display: flex;
  flex-wrap: wrap;
  margin: 64px 0;
}

.faq-container:last-child {
  margin-bottom: 0;
}

.faq-container .faq-left {
  width: 400px;
  display: none;
}

.faq-container > .faq-item {
  width: 100%;
}


@media (min-width: 992px) {
  .faq-container .faq-left {
    display: block;
  }
}

.faq-right {
  flex: 1;
}

.faq-section {
  color: #00233D;
  font-family: "Albert Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 133.333% */
}

.faq-item {
  border-top: solid 1px var(--color-grey-light);
}


.faq-answser {
  margin-right: 58px;
  color: #00233D;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 160% */
}

.faq-answser a {
  color: var(--color-blue-medium);
}

.faq-answser ul {
  margin-left: 20px;
}

.faq-answser ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.faq-item .accordion-trigger-button {
  margin-top: 16px;
}

.faq-item.closed .faq-question {
  color: #00233D;
  font-family: "Albert Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 160% */
  margin-right: 58px;
  padding-top: 26px;
}

.faq-item .faq-question {
  color: var(--color-blue-medium);
  font-family: "Albert Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 160% */
  margin-right: 58px;
  padding-top: 26px;
}

@media (max-width: 576px) {
  .faq-item .faq-question {
    color: var(--color-blue-medium);
    font-family: "Albert Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18.56px; /* 160% */
    margin-right: 58px;
    padding-top: 8px;
    margin-bottom: 8px;
  }

  .faq-item.closed .faq-question {
    color: #00233D;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.56px; /* 160% */
    margin-right: 58px;
    padding-top: 8px;
    margin-bottom: 8px;
  }

  .faq-answser {
    font-size: 14px;
  }

  .faq-item .accordion-trigger-button {
    margin-top: 8px;
    height: 18.58px;
    width: 18.58px;
    background-size: contain;
  }
}