.burger-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}

.burger-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}





.faq-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #F6F6F6;
  border-radius: 20px;
  padding: 30px;
  transition: background 0.3s ease;
}

.faq-item:not(.active):hover {
  background: #E1E5AC;
}

.faq-item.active {
  background: #E1E5AC;
}

.faq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding-top: 0;
  transition: padding 0.3s ease;
}

.faq-item.active .faq-answer-inner {
  padding-top: 30px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* запас */
}

@media (max-width: 768px) {
  
  .faq-item {
    border-radius: 15px;
    padding: 15px;
  }

  .faq-item.active .faq-answer-inner {
    padding-top: 15px;
  }

}





.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.cards-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.card {
  flex-shrink: 0;
  scroll-snap-align: start;
}

.cards-container::-webkit-scrollbar {
  display: none;
}

.btn-prev {
    border-radius: 10px;
}

.btn-next {
    border-radius: 10px;
}