.faq {
  padding: 32px 0 96px;
}
.faq h1 {
  color: var(--Juoda, #000000);
  font-size: 1.875rem;
  line-height: 2.25rem;
  margin: 0 0 3rem;
}
.faq .container {
  max-width: 1024px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
}
.faq-text {
  margin: 1.6rem 0 0;
}
.faq-text a {
  color: var(--Juoda, #000000);
  transition: color 0.3s ease;
}
.faq-text a:hover {
  color: var(--Yellow, #FFCB00);
}
.faq-item {
  padding: 0 0 1.5rem;
  border-bottom: 1px solid #E0E0E0;
}
.faq-item__content {
  padding: 1.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1rem;
}
.faq-item__content p {
  font-size: inherit;
  line-height: inherit;
}
.faq-item__content a {
  color: var(--Juoda, #000000);
  transition: color 0.3s ease;
}
.faq-item__content a:hover {
  color: var(--Yellow, #FFCB00);
}
.faq-item h2 {
  margin: 0;
}
.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  outline: none;
  background: none;
  text-align: left;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  gap: 1.5rem;
  color: var(--Juoda, #000000);
}
.faq-item button:hover .faq-item__plus {
  background: var(--Yellow, #FFCB00);
}
.faq-item button.collapsed .faq-item__plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item__plus {
  display: inline-block;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E0E0E0;
  transition: background-color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
}
.faq-item__plus:before, .faq-item__plus:after {
  content: "";
  width: 13px;
  height: 2px;
  background: var(--Juoda, #000000);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), background-color 0.4s ease-in-out;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 64px 0 96px;
  }
  .faq h1 {
    font-size: 3rem;
    line-height: 1.3;
  }
  .faq-item button {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .faq-item__plus {
    width: 44px;
    height: 44px;
  }
  .faq-item__content {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}/*# sourceMappingURL=faq.css.map */