/* =====================================
   ECO CLEANING FAQ SECTION
===================================== */

.eco-faq-section {
    width: 100%;
    padding: 35px 20px 45px;
    background: #ffffff;
    box-sizing: border-box;
    font-family: inherit;
}

.eco-faq-container {
    max-width: 1100px;
    margin: 0 auto;
}


/* =====================================
   HEADING
===================================== */

.eco-faq-title {
    margin: 0 0 40px;
    text-align: center;
    color: #172033;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}


/* =====================================
   2 COLUMN FAQ GRID
===================================== */

.eco-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 0;
}


/* =====================================
   FAQ ITEM
===================================== */

.eco-faq-item {
    border-bottom: 1px solid #dddddd;
}


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

.eco-faq-question {
    width: 100%;
    min-height: 82px;
    padding: 20px 0;
    border: 0;
    outline: none;
    background: transparent;

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

    gap: 18px;
    cursor: pointer;
    text-align: left;

    color: #172033;
    font-family: inherit;
}

.eco-faq-question span:first-child {
    font-size: 17px;
    line-height: 1.45;
    font-weight: 600;
}

.eco-faq-question:hover {
    color: #92c910;
}


/* =====================================
   FAQ ICON
===================================== */

.eco-faq-icon {
    flex: 0 0 22px;

    width: 22px;
    height: 22px;

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

    color: #172033;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;

    transition: all 0.25s ease;
}

.eco-faq-question:hover .eco-faq-icon {
    color: #92c910;
}


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

.eco-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.eco-faq-answer p {
    margin: 0;
    padding: 0 35px 25px 0;

    color: #687587;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.7;
}


/* =====================================
   ACTIVE FAQ
===================================== */

.eco-faq-item.active .eco-faq-answer {
    max-height: 500px;
}

.eco-faq-item.active .eco-faq-icon {
    color: #92c910;
}


/* =====================================
   HIDDEN FAQs
===================================== */

.eco-faq-hidden {
    display: none;
}

.eco-faq-grid.show-all .eco-faq-hidden {
    display: block;
}


/* =====================================
   VIEW MORE BUTTON
===================================== */

.eco-faq-view-more {
    display: block;

    margin: 28px auto 0;
    padding: 11px 22px;

    border: 0;
    border-radius: 5px;

    background: #92c910;
    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.2s ease;
}

.eco-faq-view-more:hover {
    background: #7fac0b;
    transform: translateY(-1px);
}


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

@media (max-width: 767px) {

    .eco-faq-section {
        padding: 25px 18px 35px;
    }

    .eco-faq-title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .eco-faq-grid {
        grid-template-columns: 1fr;
    }

    .eco-faq-question {
        min-height: 70px;
    }

    .eco-faq-question span:first-child {
        font-size: 16px;
    }

    .eco-faq-answer p {
        font-size: 15px;
        padding-right: 25px;
    }
}


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

@media (max-width: 480px) {

    .eco-faq-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .eco-faq-title {
        font-size: 27px;
    }

    .eco-faq-question {
        gap: 10px;
    }

    .eco-faq-question span:first-child {
        font-size: 15px;
    }

    .eco-faq-icon {
        flex-basis: 20px;
        font-size: 22px;
    }

}