.elementor-widget-faq_section {
    padding: 46px 10px 116px 10px;
}


.aixco-section-wrapper .faq-content h2 {
    margin-top: 0;
    margin-bottom: 33px;
}
.aixco-section-wrapper .faq-content p {
    font-size: 20px;
    line-height: 24px;
    opacity: .8;
    margin: 0;
    margin-bottom: 60px;
}

.aixco-section-wrapper .faq-content a {
    font-size: 24px;
    line-height: 28px;
    color:#1F2921;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-self: center;
    gap: 16px;
}

.aixco-section-wrapper .faq-content a svg {
    transition: all .3s ease;
    margin-top: 3px;
}

.aixco-section-wrapper .faq-content a:hover svg {
    transform: translateX(8px);
}

.aixco-section-wrapper .faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
}

.aixco-section-wrapper .faq-accordion-wrapper .faq-accordion {
    margin-bottom: 30px;
    padding-bottom: 26px;
    transition: height 1s ease;
    padding: 41px 26px 40px 43px;
    background-color: #232421;
    border-radius: 24px;
}

.aixco-section-wrapper .faq-accordion-wrapper .faq-accordion .faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.aixco-section-wrapper .faq-accordion-wrapper .faq-accordion .faq-header svg {
    transition: all .3s ease;
}

.aixco-section-wrapper .faq-accordion-wrapper .faq-accordion.active .faq-header svg {
    transform: rotate(180deg);
}

.aixco-section-wrapper .faq-accordion-wrapper .faq-accordion .faq-question {
    font-size: 32px;
    line-height: 32px;
    max-width: 90%;
    font-weight: 500;
    margin: 0;
    color: #F8CF01;
}

.aixco-section-wrapper .faq-accordion-wrapper .faq-accordion .faq-icon {
    background-color: #F8CF01;
    height: 54px;
    width: 54px;
    border-radius: 9999999px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.aixco-section-wrapper .faq-accordion-wrapper .faq-accordion  .faq-icon:before {
    content: "+";
}

.aixco-section-wrapper .faq-accordion-wrapper .faq-accordion.active  .faq-icon:before {
    content: "-";
}

.aixco-section-wrapper .faq-accordion-wrapper .faq-accordion .faq-answer {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 1s ease,opacity 1s ease;
    padding-right: 200px;
}

.aixco-section-wrapper .faq-accordion-wrapper .faq-accordion .faq-answer p {
    margin: 0;
    margin-top: 20px;
    color: white;
    font-size: 20px;
    font-weight: 400;
    line-height: 30.05px;
}

.aixco-section-wrapper .faq-accordion-wrapper .faq-accordion.active .faq-answer {
    height: fit-content;
    opacity: 1;
    transition: height 1s ease,opacity 1s ease;
}

@media screen and (max-width:1024px){

    .aixco-section-wrapper .faq-accordion-wrapper .faq-accordion .faq-answer {
        padding-right: 20px;
    }
    .aixco-section-wrapper .faq-wrapper{
        grid-template-columns: 1fr !important;
    }
    .aixco-section-wrapper .faq-content p {
        margin-bottom: 20px;
    }

    .aixco-section-wrapper .faq-accordion-wrapper {
        margin-top: 35px;
    }

    .aixco-section-wrapper .faq-accordion-wrapper .faq-accordion .faq-question {
        font-size: 28px;
        line-height: 30px;
        margin-right: 10px;
        width: calc(100% - 50px);
    }

    .aixco-section-wrapper .faq-accordion-wrapper .faq-accordion .faq-icon {
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width:767px){
    .aixco-section-wrapper .faq-content h2 {
      font-size: 24px;
      line-height: 28px;
    }

    .aixco-section-wrapper .faq-content p {
        font-size: 16px;
        line-height: 24px;
    }

    .aixco-section-wrapper .faq-content a {
        font-size: 16px;
        line-height: 24px;
    }
    .aixco-section-wrapper .faq-accordion-wrapper .faq-accordion .faq-question {
        font-size: 22px;
        line-height: 30px;
        margin-right: 10px;
        width: calc(100% - 40px);
    }

    .aixco-section-wrapper .faq-accordion-wrapper .faq-accordion .faq-icon {
        width: 35px;
        height: 35px;
    }
}