
/* =========================================
   PLASTIC DANA MACHINE - FAQ SECTION
========================================= */

/* .plastic-faq-section {
    margin-top: 50px;
    padding: 40px 0;
} */


/* FAQ HEADING */

.plastic-faq-heading {
    margin-bottom: 30px;
}

.plastic-faq-heading span {
    display: inline-block;
    color: #0b3b6f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.plastic-faq-heading h3 {
    color: #000000;
    font-size:  21px;
    font-weight: 700;
    margin: 0 0 10px;
}

.plastic-faq-heading p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}




/* =========================================
   FAQ ACCORDION
========================================= */

.custom-faq {
    width: 100%;
}


/* FAQ BOX */

.custom-faq .accordion-item {
    position: relative;
    width: 100%;
    margin-bottom: 14px;

    background: #ffffff;

    border: 1px solid #e5e9ef !important;
    border-radius: 8px !important;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}


/* Hover */

.custom-faq .accordion-item:hover {
    border-color: #d4dce6 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}


/* =========================================
   QUESTION BUTTON
========================================= */

.custom-faq .accordion-button {
    position: relative;

    display: flex;
    align-items: center;

    width: 100% !important;
    min-height: 65px;

    padding: 18px 65px 18px 22px;

    border: 0 !important;
    border-radius: 0 !important;
    outline: none !important;

    background: #ffffff !important;

    color: #172b4d;

    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;

    text-align: left;

    box-shadow: none !important;

    transition: all 0.3s ease;
}


/* Remove ALL browser focus border */

.custom-faq .accordion-button:focus,
.custom-faq .accordion-button:active {
    outline: none !important;
    border: 0 !important;
    box-shadow: none !important;
}


/* Open Question */

.custom-faq .accordion-button:not(.collapsed) {
    color: #000000 !important;
    background: #ffffff !important;

    border: 0 !important;
    box-shadow: none !important;
}


/* =========================================
   PLUS / MINUS ICON
========================================= */


/* Remove Bootstrap default arrow */

.custom-faq .accordion-button::after {
    position: absolute;

    right: 22px;
    top: 50%;

    width: 30px;
    height: 30px;

    margin: 0;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: none !important;
    background-color: #f59e0b;

    border-radius: 50%;

    content: "+";

    color: #ffffff;

    font-size: 20px;
    font-weight: 400;
    line-height: 30px;

    transition: all 0.3s ease;
}


/* OPEN = MINUS */

.custom-faq .accordion-button:not(.collapsed)::after {
    content: "−";

    background-color: #000000;

    transform: translateY(-50%);
}


/* =========================================
   ANSWER
========================================= */

.custom-faq .accordion-collapse {
    border: 0 !important;
}


.custom-faq .accordion-body {
    padding: 0 65px 22px 22px;

    background: #ffffff;

    border: 0 !important;

    color: #626b78;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.8;
}


/* =========================================
   OPEN ITEM
========================================= */

.custom-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: #dce4ed !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .plastic-faq-section {
        margin-top: 35px;
        padding: 25px 0;
    }

    .plastic-faq-heading {
        margin-bottom: 25px;
    }

    .plastic-faq-heading h3 {
        font-size: 26px;
    }

    .plastic-faq-heading p {
        font-size: 14px;
    }


    .custom-faq .accordion-item {
        margin-bottom: 12px;
        border-radius: 7px !important;
    }


    .custom-faq .accordion-button {
        min-height: 60px;

        padding: 16px 55px 16px 17px;

        font-size: 14px;
        line-height: 1.5;
    }


    .custom-faq .accordion-button::after {
        right: 16px;

        width: 27px;
        height: 27px;

        font-size: 18px;
        line-height: 27px;
    }


    .custom-faq .accordion-body {
        padding: 0 55px 18px 17px;

        font-size: 14px;
        line-height: 1.7;
    }

}
/* Simple Pelletizing List */

.pelletizing-list {
    margin: 20px 0 30px;
}

.pelletizing-list ul {
    margin: 0;
    padding-left: 22px;
}

.pelletizing-list li {
    margin-bottom: 16px;
    padding-left: 5px;

    color: #353535;
    font-size: 16px;
    line-height: 1.8;
}

.pelletizing-list li::marker {
    color: #0b3b6f;
    font-size: 16px;
}

.pelletizing-list li strong {
    color: #172b4d;
    font-weight: 600;
}


/* Mobile */

@media (max-width: 767px) {

    .pelletizing-list {
        margin: 15px 0 25px;
    }

    .pelletizing-list ul {
        padding-left: 20px;
    }

    .pelletizing-list li {
        margin-bottom: 13px;
        padding-left: 3px;
        font-size: 14px;
        line-height: 1.7;
    }

}