.faq-section {
  margin: 100px 0;
}

.faq-section .container {
  max-width: 1062px;
}

.faq-section__title {
  color: var(--Dark-blue);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.faq-section__acc-wrapper {
  margin-bottom: 24px;
  background-color: var(--White);
  border-radius: 24px;
  border: 1px solid var(--Silver);
  overflow: hidden;
  transition: 0.4s;

  padding-bottom: 10px;
}

.faq-section__acc-wrapper.active {
  background-color: var(--Gray);
  padding-bottom: 24px;
}

.faq-section__acc {
  padding: 24px 50px 10px 24px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;

  color: var(--Dark-blue);
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;

  position: relative;
  background: none;
}

.faq-section__acc-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  display: block;
  width: 24px;
  height: 24px;
  transition: 0.3s;
}

.faq-section__acc.active .faq-section__acc-arrow {
  transform: rotate(90deg);
}

.faq-section__panel {
  padding: 0 50px 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease-out;
  line-height: 140%;
}

@media screen and (max-width: 1200px) {
  .faq-section__acc {
    font-size: 18px;
  }

  .faq-section {
    margin: 80px 0;
  }
}