.faq-section {
    padding: 0 0 80px;
}

.faq-list {
    max-width: 1064px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border-bottom: 1px solid #0000001A;
    position: relative;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--black);
    font-family: "Aeonik";
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-align: left;
}

.faq-question:before {
    content: "";
    background-image: url("../../assets/images/plus.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0;
    background-position: center;
}

.faq-item.active .faq-question:before {
    background-image: url("../../assets/images/minus.png");
}

.faq-answer {
    display: none;
    margin-bottom: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p a {
    color: var(--black);
}

.faq-answer p a:hover {
    color: var(--parrot);
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.faq-answer ul li {
    position: relative;
    padding-left: 23px;
}

.faq-answer ul li+li {
    margin-top: 20px;
}

.faq-answer ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    color: #8dc63f;
    background-image: url("../../assets/images/list.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

.faq-load-more {
    text-align: center;
}

.faq-load-more .theme-btn {
    margin-top: 30px;
}

@media (max-width:991px) {
    .faq-section {
        padding: 0 0 60px;
    }
}

@media (max-width:767px) {
    .faq-section {
        padding: 0 0 40px;
    }
    .faq-load-more .theme-btn {
        margin-top: 20px;
    }
    .faq-answer ul {
        margin: 12px 0;
    }
    .faq-question {
        padding: 15px 30px 15px 0;
        font-size: 16px;
        line-height: 22px;
    }
    .faq-question:before {
        width: 12px;
        height: 12px;
    }
}