/* FAQ section */
.faq-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: solid .5px #44474D;
    border-bottom: solid .5px #44474D;
}

.faq-section .faq-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    border-top: solid .5px #44474D;
}

/* Item */
.faq-wrapper .faq-item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    border-bottom: solid .5px #44474D;
    background: #0F0F0F;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.faq-wrapper .faq-item:hover {
    background: #131313;
}

.faq-wrapper .faq-item.open {
    background: #131313;
}

.faq-wrapper .faq-item:last-child {
    border-bottom: none;
}

/* Trigger */
.faq-item .faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 25px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.faq-trigger .faq-question {
    font-family: var(--font-secondary);
    font-weight: normal;
    font-size: 16px;
    color: #B6BECC;
    text-align: left;
    transition: color .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-trigger .faq-question {
    color: #898E99;
}

.faq-trigger .fi {
    color: #44474D;
    font-size: 14px;
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), color .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-trigger .fi {
    transform: rotate(45deg);
    color: #898E99;
}

/* Content */
.faq-item .faq-content {
    height: 0px;
    overflow: hidden;
    transition: height .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item .faq-content-inner {
    padding: 0 25px 25px 25px;
}

.faq-content .faq-answer {
    font-family: var(--font-secondary);
    font-weight: normal;
    font-size: 16px;
    color: #B6BECC;
    line-height: 1.5;
    text-align: left;
    max-width: 800px;
}