.faq-v2 {
  padding: 95px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-v2 .background-overlay {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  width: auto;
  height: auto;
  max-width: none;
  max-height: 100%;
}

.faq-v2 .background-overlay {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0)!important;
  width: 100%;
  width: 100vw;
  height: 100vh;
  max-width: 1935px;
  min-width: 1935px;
  max-height: 1000px;
}

.faq-v2 .hero-wrapper {
  z-index: 3;
}

.faq-v2 .section-header{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.faq-v2-subtitle{
  max-width: 700px;
  font-size: 18px;
}

.faq-v2-title{
  max-width: 700px;
  font-size: 34px;
}

.faq-v2 .faq-wrap {
  padding: 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transition: all 0.3s ease;
}

.faq-v2 .faq-wrap.active{
  gap: 20px;
}


.faq-v2 .faq-wrap.active svg{
  transform: rotate(180deg);
}

.faq-v2 .faq-wrap.active .a-circle{
  fill: rgba(39, 35, 101, 0.1);
}

.faq-v2 .faq-wrap::after {
  content: "";
  border-radius: 12px;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  pointer-events: none;
  background: transparent;
  border: 1px solid #7f73ca;
  border-radius: 12px;
  position: absolute;
  filter: drop-shadow(4px 4px 2px rgba(39, 35, 101, 0.4));
}

.faq-v2 .faq-wrap .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.faq-v2 .faq-wrap .faq-question svg {
  transition: all 0.3s ease;
  min-width: 31px;
  min-height: 31px;
  max-width: 31px;
  max-height: 31px;
}

.faq-v2 .faq-wrap h3{
  font-size: 20px;
  color: #262365;
}

.faq-v2 .faq-wrap .faq-answer {
  height: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-v2 .faq-wrap.active .faq-answer {
  display: flex;
  flex-direction: column;
  height: auto;
}

@media screen and (max-width: 992px) {
  .faq-v2 .m-h-al-left {
    text-align: left !important;
    align-items: flex-start !important;
  }
  .faq-v2 .m-h-al-center {
    text-align: center !important;
    align-items: center !important;
  }
  .faq-v2 .m-h-al-right {
    text-align: right !important;
    align-items: flex-end !important;
  }
}
