    .faq-fold {
      padding: 40px 0px;
    }

    .faq-fold .row-container {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 40px;
    }
  
    .faq-card {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      margin-bottom: 30px;
    }
  
    .faq-question {
      display: flex;
      width: 100%;
      justify-content: space-between;
      cursor: pointer;
      position: relative;
      background: none;
      position: relative;
    }
  
    .faq-question * {
      color: white;
      margin: 0px;
      transition: all 500ms ease;
    }

.faq-question-inner-padding {
    flex: 1;
    padding: 20px 40px 20px 20px;
}

.faq-answer-inner-padding {
    padding: 20px 20px 20px 20px;
}

    .faq-answer {
    max-height: 0px;
    opacity: 0;
    transition: all 500ms ease;
    position: relative;
    flex: 1 0 100%;
    width: 100%;
    }

.faq-answer p:last-child {
    margin:0px;
}

.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    color: white;
    position: relative;
}
  
    .faq-answer p {
      font-weight: 300;
      font-size: 14px;
    }

    .faq-fold > .row-container > p {
      width: 75%;
      text-align: center;
    }

.faq-question :is(.faq-plus, .faq-minus) {
    right: 20px;
    position: absolute;
    transition:all 300ms ease;
    top: 50%;
    transform: translatey(-60%);
}

.faq-question :is(.faq-plus) {
    /* opacity: 1; */
}

.active .faq-question :is(.faq-minus) {
    opacity: 1;
}

.active .faq-question :is(.faq-plus) {
    opacity: 0;
}

.faq-left {
    display: flex;
    gap: 60px;
}

.faq-question::before {
    content: '';
    background: var(--primary-color1);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    clip-path: polygon(0 12%, 100% 0, 100% 88%, 0% 100%);
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0px;
    width: 100%;
    height: calc(100% + 20px);
    background: var(--main-background1);
    z-index: -1;
}

@media (max-width:1024px) {

.faq-left {
    flex-direction: column;
}
	
}