.index-faq {
  margin-bottom: 5rem;
  margin-top: 13rem; }
  @media (max-width: 1023px) {
    .index-faq {
      margin-bottom: 0;
      margin-top: 56px; } }

.faq__title {
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 4rem; }
  @media (max-width: 1023px) {
    .faq__title {
      margin-bottom: 12px; } }
  @media (max-width: 575px) {
    .faq__title {
      text-align: left; } }

.faq__list {
  max-width: 100rem;
  margin: 0 auto 3rem; }
  @media (max-width: 1023px) {
    .faq__list {
      margin-bottom: 24px; } }

.faq__link {
  display: flex;
  justify-content: center; }

.faq__item {
  border-bottom: 1px solid #D8D8D8;
  transition: all ease .3s; }
  @media (min-width: 1024px) {
    .faq__item:not(.expand) {
      cursor: pointer; }
      .faq__item:not(.expand):hover .faq__item-control:before, .faq__item:not(.expand):hover .faq__item-control:after {
        background-color: #6AB4B9; } }
  .faq__item:not(.expand):active .faq__item-control:before, .faq__item:not(.expand):active .faq__item-control:after {
    background-color: #156864; }
  .faq__item.expand .faq__item-body {
    display: block; }
  .faq__item.expand .faq__item-control:after {
    transform: rotate(0); }
  .faq__item-header {
    font-weight: 600;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: center;
    padding: 2.4rem 0;
    cursor: pointer; }
    @media (max-width: 1023px) {
      .faq__item-header {
        padding: 12px 0;
        gap: 0; } }
  .faq__item-control {
    position: relative;
    width: 2rem;
    height: 2rem;
    margin-left: 2.8rem;
    cursor: pointer;
    flex-shrink: 0; }
    @media (max-width: 1023px) {
      .faq__item-control {
        width: 20px;
        height: 20px;
        margin-left: 16px; } }
    .faq__item-control:before, .faq__item-control:after {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      left: 0;
      height: 2px;
      background-color: #00A19B;
      display: block;
      transition: all ease .3s; }
    .faq__item-control:after {
      transform: rotate(90deg); }
  .faq__item-body {
    display: none;
    margin-top: 1rem;
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2.4rem; }
    @media (max-width: 575px) {
      .faq__item-body {
        margin-top: 12px;
        margin-bottom: 20px;
        padding-left: 0; } }

.faq__wrapper {
  border-radius: 2rem;
  padding: 4rem;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13); }
  @media (max-width: 1023px) {
    .faq__wrapper {
      border-radius: 8px;
      padding: 20px 14px; } }
  .faq__wrapper:not(:last-child) {
    margin-bottom: 4rem; }
    @media (max-width: 1023px) {
      .faq__wrapper:not(:last-child) {
        margin-bottom: 20px; } }
  .faq__wrapper-title {
    margin-bottom: 2rem; }
    @media (max-width: 1023px) {
      .faq__wrapper-title {
        margin-bottom: 14px; } }
  .faq__wrapper .faq__list {
    max-width: none;
    margin-bottom: 0; }
