

.faqAnswerOLpoints {
  padding-left: 20px;
}

.faqAnswerOLpoints a {
  color: blue;
}

.faqWrapper {
  margin: 0px 60px;
}

.faq-title {
  margin-top: 0px;
  font-size: 30px;
}

.faqContainer {
  background-color: white;
  color: black;
  border-radius: 10px;
  box-shadow: 0 2px 4px 0 rgb(0, 0, 0, 0.2);
  margin: 20px 0;
  width: 100%;
}

.faqPointsHeading {
  font-size: 18px;
  font-weight: 500;
  padding: 15px 80px 15px 25px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.faqPointsHeading::after {
  content: "\002B";
  font-size: 25px;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.faqPointsHeading.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.faqAnswerpoints {
  padding: 20px 50px 20px 25px;
  line-height: 30px;
  font-size: 16px;
}
.faq_ReadMore {
  margin: 40px 0px 20px 0px;
  width: 100%;
  text-align: center;
}

#faqReadMoreLink {
  text-decoration: none;
}

.faqReadMoreBtn {
  background-color: #656EEA;
  color: white;
  border: none;
  outline: none;
  padding: 10px 40px;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.faqReadMoreBtn:hover {
  background-color: #FFA12E;
}
.faqContainer > .active{
  background-color: #e7f1ff;
}
@media screen and (max-width: 790px) {

  .faq-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .faqPointsHeading {
    font-size: 16px;
  }

  .faqAnswerpoints {
    padding: 20px 25px 20px 25px;
    font-size: 15px;
  }

  .faqWrapper {
    margin: 0px 10px !important;
  }

  .faqReadMoreBtn {
    font-size: 14px;
    padding: 10px 40px;
  }
}