.dot-faq-section {
  padding-bottom: 160px;
  &.custom-dot-hp-faq {
    padding-top: 40px;

    h2{
      font-size: 40px;
    }

    .faq-question{
      font-weight: 700;
      padding: 23px 40px;
      line-height: 30px;
    }

    &.dark-gradient {
      background: radial-gradient( 104.17% 254.45% at 48.18% 00%, #000 0%, #270648 44.42%, #540d9a 68.41%, #dd00b7 94.63% );
    }
    .content-container {
      max-width: 960px;      
    }
  }
}



.dot-faq-section h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 65px;
  font-weight: 600;
  line-height: 93px;
  color: #fff;
  margin-bottom: 60px;
}

.faq-single {
  margin-bottom: 45px;
}

.active.faq-single {
  margin-bottom: 23px;
  transition: 0.5s;
}

.faq-question {
  background: #ffffff;
  border: 1px solid #d1aaf7;
  box-shadow: 0 3px 13px #d1aaf7;
  border-radius: 15px;
  font-family: Quicksand, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
  color: #270648;
  padding: 25px 43px;
  position: relative;
  transition: 0.5s;
  z-index: 1;
}

.faq-question:hover {
  cursor: pointer;
}

.faq-answer {
  background: #ffffff;
  border-radius: 15px;
  font-family: Quicksand, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
  color: #270648;
  margin-top: -26px;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  padding: 0 43px;
  transition: 0.5s;
}

.faq-question::after {
  content: "";
  position: absolute;
  width: 41px;
  height: 41px;
  background-image: url("../../../images/chevron-green.svg");
  background-repeat: no-repeat;
  right: 25px;
  transition: 0.5s;
}

.faq-single.active .faq-answer {
  opacity: 1;
  max-height: initial;
  height: fit-content;
  padding-top: 68px;
  padding-bottom: 68px;  
  transition: 0.5s;
}

.faq-single.active .faq-question::after {
  transform: rotate(-180deg);
}

@media screen and (max-width: 800px) {
  .page-template-page-why-dot .dot-faq-section {
    margin-bottom: 60px;
  }

  .faq-question {
    padding: 15px 13px;
  }
  .faq-question::after {
    right: 7px;
  }
  .faq-single .faq-answer {
    padding-left: 13px;
    padding-right: 13px;
  }
  .faq-single.active .faq-answer {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
