.section-faqs.faqs {
  background: url("/images/faqs-bg.webp") no-repeat center center;
  background-size: cover;
  .container {
    padding: 0 56px;
  }
  .faqs__inner {
    padding: 56px 0;
    @media (max-width: 768px) {
      padding: 32px 0;
    }
  }

  .faqs__title {
    font-family: Halvar Breitschrift;
    font-size: 46px;
    font-weight: 700;
    color: white;

    @media (max-width: 1400px) {
      font-size: 40px;
    }
    @media (max-width: 1024px) {
      font-size: 32px;
    }
    @media (max-width: 768px) {
      font-size: 24px;
    }
  }

  .faqs__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 10px;
    column-gap: 50px;

    @media (max-width: 768px) {
      grid-template-columns: 1fr;
      gap: 10px;
      column-gap: 0;
    }
  }

  .faqs__item {
    display: flex;
    max-width: 700px;
    flex-direction: column;
  }

  .faqs__item__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    padding-bottom: 28px;
    cursor: pointer;
    color: white;
    border-bottom: 1px solid #ffffff30;
    transition: all 0.3s ease;

    @media (max-width: 768px) {
      padding: 8px 0;
    }

    span {
      font-family: Halvar Breitschrift;
      font-size: 24px;
      font-style: normal;
      font-weight: 500;

      @media (max-width: 1400px) {
        font-size: 20px;
      }
      @media (max-width: 1024px) {
        font-size: 18px;
      }
      @media (max-width: 768px) {
        font-size: 15px;
      }
    }

    img {
      transition: transform 0.3s ease;
      @media (max-width: 768px) {
        width: 8px;
        height: 17px;
      }
    }

    &:hover {
      opacity: 0.8;
    }
  }

  .faqs__item__title.active img {
    transform: rotate(180deg);
  }

  .faqs__item__description {
    color: white;
    font-family: Onest;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;

    @media (max-width: 1400px) {
      font-size: 16px;
    }
    @media (max-width: 1024px) {
      font-size: 14px;
    }
    @media (max-width: 768px) {
      font-size: 12px;
    }
  }

  .faqs__item__description.active {
    padding: 20px 0;
    max-height: 200px;
    opacity: 1;

    @media (max-width: 768px) {
      padding: 8px 0;
    }
  }
}
