/******************
FAQ 
******************/

#FAQ {
    background-color: #fcf9f7;
}

#FAQInner {
    padding: 60px 20px 60px;
}

#FAQTitle {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    color: #8c6257;
}

#FAQTitle .highlight::before {
    background-color: #e2d7cf;
}

.FAQItem {
    border-top: 1px solid #282a29;
    padding: 20px 20px 30px;
    cursor: pointer;
}

.FAQItem:last-of-type {
    border-bottom: 1px solid #282a29;
}

.FAQTitle {
    color: #282a29;
    font-size: 24px;
    position: relative;
    padding-right: 55px;
    margin-bottom: 0;
    transition: 0.5s;
}

.FAQItemToggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #282a29;
    font-size: 32px;
    transition: 0.3s;
}

.FAQItem.active .FAQItemToggle {
    transform: translateY(-50%) rotate(135deg);
}

.FAQDescription {
    height: 0;
    overflow: hidden;
    transition: 0.5s;
}

.FAQDescriptionInner {
    line-height: 2;
    font-size: 16px;
    padding-top: 20px;
}

.FAQDescriptionInner a {
    text-decoration: underline;
}

#FAQButton {
    background-color: #b2977d;
    color: white;
    letter-spacing: 2px;
    margin-top: 40px;
}

@media (max-width: 750px) {
    .FAQTitle {
        font-size: 20px;
    }
}
