.faq-template .faq-accordion {
  max-width: 800px;
  margin: 26px auto 50px;
  padding: 0 20px;
}
.faq-template .faq-accordion .faq-item {
  border-bottom: 1px solid #E5E5E5;
}
.faq-template .faq-accordion .faq-item .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .faq-template .faq-accordion .faq-item .faq-question {
    padding: 16px 0;
  }
}
.faq-template .faq-accordion .faq-item .faq-question h3 {
  margin: 0;
  font-size: 21px;
  line-height: 0.72;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #0A0911;
  flex: 1;
  text-align: left;
}
@media (max-width: 768px) {
  .faq-template .faq-accordion .faq-item .faq-question h3 {
    font-size: 19px;
    line-height: 1.2;
  }
}
.faq-template .faq-accordion .faq-item .faq-question img {
  width: 26px;
  height: 26px;
  transition-duration: 0.15s;
}
.faq-template .faq-accordion .faq-item.active .faq-question img {
  transform: rotate(180deg);
}
.faq-template .faq-accordion .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-right: 24px;
}
.faq-template .faq-accordion .faq-item .faq-answer .faq-answer-content {
  padding: 0 0 20px 0;
  color: #0A0911;
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .faq-template .faq-accordion .faq-item .faq-answer .faq-answer-content {
    font-size: 14px;
  }
}
.faq-template .faq-accordion .faq-item.active .faq-answer {
  max-height: 1000px;
  padding-top: 0;
}
.faq-template .cta-banner .cta-banner-title {
  font-size: 43px;
  width: 360px;
}
@media (max-width: 768px) {
  .faq-template .cta-banner .cta-banner-title {
    width: 100%;
  }
}
.faq-template .cta-banner .cta-banner-buttons .button.button-secondary {
  width: 350px;
}
@media (max-width: 768px) {
  .faq-template .cta-banner .cta-banner-buttons .button.button-secondary {
    width: 100%;
  }
}
.faq-template .faq-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.faq-template .faq-modal.active {
  display: flex;
}
.faq-template .faq-modal .faq-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.faq-template .faq-modal .faq-modal-content {
  width: 478px;
  padding: 36px 50px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 24px;
  z-index: 10001;
}
@media (max-width: 768px) {
  .faq-template .faq-modal .faq-modal-content {
    width: calc(100% - 20px);
    padding: 26px;
  }
}
.faq-template .faq-modal .faq-modal-content {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.faq-template .faq-modal .faq-modal-content::-webkit-scrollbar {
  display: none;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #0A0911;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-close:hover {
  opacity: 0.6;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-title {
  font-size: 42px;
  font-weight: 700;
  color: #0A0911;
  margin: 0 0 25px 0;
  text-transform: uppercase;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form {
  margin-bottom: 20px;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .cf7-grid {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  margin-bottom: 20px;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .cf7-grid br {
  display: none;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .cf7-grid label {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  font-size: 15px;
  line-height: 20px;
  color: #0A0911;
  font-weight: 500;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .cf7-grid label input[type=text],
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .cf7-grid label input[type=email],
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .cf7-grid label input[type=tel],
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .cf7-grid label textarea {
  border: 1px solid rgba(17, 17, 19, 0.2);
  border-radius: 13px;
  height: 40px;
  padding: 0 16px;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  color: #0A0911;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .cf7-grid label textarea {
  height: 116px;
  resize: vertical;
  padding-top: 12px;
  padding-bottom: 12px;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .cf7-grid label input[type=checkbox] {
  width: auto;
  margin-right: 8px;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .cf7-grid label .wpcf7-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  margin-bottom: 6px;
  margin-left: 0;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .wpcf7-submit {
  background-color: #0A0911;
  border-radius: 13px;
  height: 43px;
  color: #F9FAFC;
  font-size: 17px;
  font-weight: 600;
  width: 100%;
  border: none;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .wpcf7-submit:hover {
  background-color: #17D2FF;
  box-shadow: 0px 0px 25px 0px rgba(23, 210, 255, 0.6);
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .wpcf7-submit:focus {
  background-color: #00ADD7;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .iti {
  width: 100%;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-form .wpcf7-form .iti input[type=tel] {
  padding-left: 60px;
}
.faq-template .faq-modal .faq-modal-content .wpcf7-spinner {
  display: none !important;
}
.faq-template .faq-modal .faq-modal-content .faq-modal-confirmation {
  text-align: center;
  font-size: 15px;
  color: #0A0911;
  margin: 0;
}
.faq-template .faq-modal .faq-modal-content .ajax-loader {
  display: none !important;
}
