.montoport-faq-section {
  --faq-text: #54585a;
  --faq-title: #54585a;
  --faq-rule: rgba(84, 88, 90, 0.2);
  color: var(--faq-text);
}

.elementor-widget-montoport_faq_section {
  width: 100% !important;
}

.montoport-faq-section__wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.montoport-faq-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 35fr) minmax(0, 65fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.montoport-faq-section--no-heading .montoport-faq-section__grid {
  grid-template-columns: 1fr;
}

@media (max-width: 900px) {
  .montoport-faq-section__grid {
    grid-template-columns: 1fr;
  }
}

.montoport-faq-section__heading {
  margin: 0;
  color: var(--faq-title);
  font-family: "Berlingske Serif", Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.3px;
}

.montoport-faq-section__acc {
  border-top: 1px solid var(--faq-rule);
}

.montoport-faq-section__item {
  border-bottom: 1px solid var(--faq-rule);
}

.montoport-faq-section__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 16px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--faq-title);
  cursor: pointer;
  text-align: left;
  font-family: 'Ghotam' !important;
  font-size: 14px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  appearance: none;
  -webkit-appearance: none;
}

.montoport-faq-section__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  flex-shrink: 0;
  color: var(--faq-title);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.montoport-faq-section__item.is-open .montoport-faq-section__toggle::before {
  content: "−";
}

.montoport-faq-section__item:not(.is-open) .montoport-faq-section__toggle::before {
  content: "+";
}

.montoport-faq-section__panel-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.montoport-faq-section__panel {
  max-width: 78ch;
  padding: 0 0 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.montoport-faq-section--no-heading .montoport-faq-section__panel {
  max-width: none;
}

.montoport-faq-section__item.is-open .montoport-faq-section__panel {
  opacity: 1;
}

.montoport-faq-section__panel,
.montoport-faq-section__panel p {
  color: var(--faq-text);
  font-family: 'Ghotam' !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 325;
  line-height: 20px;
}

.montoport-faq-section__panel p {
  margin: 0 0 0.75em;
}

.montoport-faq-section__panel p:last-child {
  margin-bottom: 0;
}

.montoport-faq-section__panel span {
  font-weight: 300 !important;
}

@media (prefers-reduced-motion: reduce) {
  .montoport-faq-section__panel-wrap,
  .montoport-faq-section__panel {
    transition: none;
  }
}

