@charset "UTF-8";

section.faq {
    background-color: #f8f8f8;
    padding: 120px 0;
}

.page:not(.home) .faq {
    background-color: #0954A3;
}

section.faq .heading h2 {
    margin: 0 0 clamp( 18px, 1.354vw, 26px );
    color: #212121;
}

.page:not( .home ) .faq .heading h2 {
    color: #f8f8f8;
}

section.faq .faq-item {
    margin: clamp( 24px, 1.875vw, 36px ) 0;
    border-radius: 0;
    background-color: #f8f8f8;
    box-shadow: 0px 10px 20px #0000001A;
    transition: all .75s ease;
}

.faq-item .accordion {
    position: relative;
    background-color: #ffffff;
    color: #212121;
    border-radius: 0;
    padding: clamp( 10px, 0.990vw, 19px ) clamp( 32px, 2.083vw, 40px );
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.faq-item .panel {
    display: block;
    max-height: 0;
    transition: all .75s linear;
}

.faq-item .accordion.active {
    border-radius: 0;
}

.faq-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    text-transform: none;
    font-size: clamp(16px, 1.146vw, 22px);
    margin: 0;
}

.faq-item .panel.show {
    padding: 20px;
    max-height: 750px;
    transition: all .75s linear;
}

.faq-item .answer li {
    margin-bottom: 10px;
}

.faq-item .accordion::after {
    position: absolute;
    content: '\f067';
    font-family: 'Font Awesome 5 Free', fantasy;
    font-weight: 900;
    width: 26px;
    right: clamp( 16px, 1.250vw, 24px );
    top: 50%;
    transform: translateY(-50%);
    /* margin: -7px 0 1px; */
    font-size: 26px;
    display: inline-block;
    color: #2a6c0c;
}

.faq-item .accordion.active::after {
    content: '\f068';
}

@media ( max-width: 768px ) {
    .faq-item .accordion {
        padding: 10px 50px 10px 32px;
        justify-content: start;
    }
}