#FAQ{
    width: 100%;
    background-color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 100px;
}
@media (max-width: 1000px) {
    #FAQ{
        padding-block:70px;
    }
    .FAQcontainer{
        gap: 50px;
    }
}

.FAQcontainer .Sectiontitle{
    font-size: 3rem;
    list-style: 3rem;
    color: var(--primary-green);
}

.FAQcontainer{
    padding: 0 10px;
    background-color: var(--black);
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 80px;
    overflow: hidden;
}
.questionscontainer{
    width: 100%;
    max-width: 1000px;
}

.oneques{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-bottom: 1px dashed var(--primary-green);
    overflow: hidden;
    transition: all 0.5s;
}
.question{
    padding-block: 20px;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
}

.questiontext{
    width: calc(100% - 60px);
    font-family: "Quicksand", serif;
    color: var(--primary-green);
    font-weight: 200;
    font-size: 30px;
    line-height: 35px;
    pointer-events: none;
}
.answerofque{
    padding-block: 20px;
    font-family: "Quicksand", serif;
    color: var(--grey);
    font-weight: 200;
    font-size: 30px;
    line-height: 35px;
    opacity: 0;
    transition: all 0.5s;
    pointer-events: none;
}
.plussign{
    width: 30px;
    height: 30px;
    transition: all 0.5s;
}
