section.faq {
  padding: 70px 0;
  background: var(--header);
  color: #fff;
}

section.faq .max-content {
  margin: auto;
  padding: 30px 0;
}

section.faq .title h4 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3px;
  color: #fff;
}

section.faq .item a {
  font-weight: 600;
  font-style: normal;
  color: #fff;
}

section.faq p {
  font-weight: 400;
  font-size: 16px;
}

section.faq .flex-content h4 {
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
}

.faq-item h6 {
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.3px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.faq-item p {
  display: none;
  margin: 10px 0;
  transition: all 0.5s ease 0s;
}

.faq-item {
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
  padding-bottom: 10px;
  transition: all 0.5s ease 0s;
}

section.faq .flex-content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

section.faq .flex-content p {
  margin-bottom: 0;
}

section.faq .flex-content h4 {
  font-size: 18px;
  margin-top: 0;
}

@media (max-width: 767px) {
  section.faq .flex-content {
    display: block;
  }
  section.faq {
    padding: 30px 0 0;
  }
  section.faq .max-content {
    padding: 0;
  }
  .faq-item h6 {
    font-size: 16px;
  }
  section.faq .title h4 {
    font-size: 16px !important;
  }
  section.faq .item {
    margin-bottom: 15px;
  }
  .faq .button {
    margin: 20px 0 5px;
  }
}
@media (min-width: 1100px) {
  section.faq .row {
    margin-inline: -15px;
  }
}
.faq-item h6:after {
  content: "➔";
}

.faq-item.active h6:after {
  transform: rotate(90deg);
}

.faq .button {
  background: #f98755 !important;
  max-width: 230px;
  display: none;
  padding: 10px 0 !important;
}

.faq-item.active .button {
  display: flex;
}
body.after-scroll .faq .footer-sticky-btn {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.faq .footer-sticky-btn {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  z-index: 9;
  bottom: 0;
  right: 0;
  padding: 10px;
  background: #fffffffa;
  box-shadow: rgba(0, 0, 0, 0.25) 0px -5px 5px -5px;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: right;
  transition: all 0.3s ease;
}
@keyframes faq-button-shake {
  0% {
    transform: translateX(0);
  }
  3% {
    transform: translateX(-3px);
  }
  6% {
    transform: translateX(3px);
  }
  10%,
  100% {
    transform: translateX(0);
  }
}

.faq .footer-sticky-btn a.button {
  display: inline-block;
  min-height: auto;
  padding: 12px 44px !important;
  margin: 0 !important;
  background: #007aff !important;
  animation: faq-button-shake 3.4s ease-in-out infinite;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 769px) {
  .faq .footer-sticky-btn a.button {
    max-width: 300px;
  }
}
