.faq{
  display: flex;
  flex-direction: column;
  margin: 100px var(--px160-percent);
  z-index: 2;
  .faq__title{
    margin-bottom: 40px;
  }
  .faq__items{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap:0;
    
    .faq-item{
      &:nth-child(3n+1) {
        background-color: var(--color-primary--4);
      }
      &:nth-child(3n+2) {
        background-color: var(--color-primary--3);
      }
      &:nth-child(3n+3) {
        background-color: var(--color-primary--2);
        color: var(--color-white);
        .faq-item__title{
          &::after{
            content:url('../../images/faq/chevron_down_white.svg');
          }
        }
      }
      margin: 0;
      border: 0;
      padding: 8px 16px;

      .faq-item__title{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 0;

        &::marker{
          content: '';
          display: none;
        }
        &::after{
          transition: all 0.2s;
          content:url('../../images/faq/chevron_down.svg');
        }
      }
      &[open]{
        .faq-item__title{
          &::after{
            transform: rotateZ(180deg);
          }
        }
      }

      .content{
        margin-top: 10px;
        margin-right: calc(var(--px160-percent) + 24px);
        p{
          padding: 0;
          margin: 0;
        }
      }
    }
  }
}

@media all and (min-width: 750px) {
  .faq{
    flex-direction: row;
    margin: 200px var(--px160-percent);
    .faq__title{
      width: 30%;
      flex-shrink: 0;
    }
    .faq__items{
      .faq-item{
        gap: 48px;
        padding: 32px 64px;
        .faq-item__title{
        }
        .content{
          margin-right: calc(var(--px160-percent) + 48px);
        }
      }
    }
  }
}