﻿/* FAQ PAGE
   --------------------------------------- */

.faq-section {
    padding: 100px 0 120px;
    background: #ffffff;
}

/* Heading */

.faq-heading {
    max-width: 520px;
    margin: 0 auto 40px;
    text-align: center;
}

.faq-heading-line {
    width: 60px;
    height: 4px;
    background: #DB2400;
    margin: 0 auto 20px;
}

.faq-heading h2 {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 10px;
    color: #000000;
}

.faq-subtitle {
    margin: 0 0 20px;
    font-size: 13px;
    color: #777777;
}

/* contact box */

.faq-contact-box {
    display: inline-flex;
    flex-direction: column;
    border: 1px solid #DB2400;
    min-width: 260px;
}

.faq-contact-link {
    display: block;
    padding: 10px 40px;
    font-size: 12px;
    text-decoration: none;
    color: #DB2400;
    background: #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
}

    .faq-contact-link + .faq-contact-link {
        border-top: 1px solid #DB2400;
    }

    .faq-contact-link:hover {
        background: #DB2400;
        color: #ffffff;
    }

/* Accordion card */

.faq-card {
    border: 1px solid #DB2400;
    padding: 40px 55px;
    margin: 40px auto 0;
}

/* each accordion group */

.faq-accordion .acc-group {
    margin-bottom: 8px;
}

    /* accordion button */

    .faq-accordion .acc-group > button {
        width: 100%;
        text-align: left;
        background: #f7f7f7;
        border: none;
        outline: none;
        padding: 14px 50px 14px 24px;
        font-size: 13px;
        line-height: 1.4;
        font-weight: 600;
        color: #000000;
        position: relative;
        cursor: pointer;
    }

        .faq-accordion .acc-group > button:focus {
            outline: none;
        }

    /* accordion open panel content */

    .faq-accordion .acc-group .content {
        padding: 15px 24px 20px;
        background: #ffffff;
        border-top: 1px solid #eeeeee;
        font-size: 12px;
        line-height: 1.6;
    }

        .faq-accordion .acc-group .content p:last-child {
            margin-bottom: 0;
        }

        .faq-accordion .acc-group .content ul {
            padding-left: 20px;
            margin: 5px 0 10px;
        }

/* plus / minus icon */

.faq-accordion .acc-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #DB2400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .faq-accordion .acc-icon:before,
    .faq-accordion .acc-icon:after {
        content: "";
        position: absolute;
        background: #DB2400;
        border-radius: 2px;
    }

    /* horizontal line */
    .faq-accordion .acc-icon:before {
        width: 10px;
        height: 2px;
    }

    /* vertical line */
    .faq-accordion .acc-icon:after {
        width: 2px;
        height: 10px;
    }

/* when open (button NOT .collapsed) -> show minus */
.faq-accordion .acc-group > button:not(.collapsed) .acc-icon:after {
    opacity: 0;
}

/* spacing between items */
.faq-accordion .acc-group:last-child {
    margin-bottom: 0;
}

/* responsive */

@media (max-width: 991px) {
    .faq-card {
        padding: 30px 20px;
    }

    .faq-accordion .acc-group > button {
        padding: 12px 45px 12px 18px;
        font-size: 12px;
    }

    .faq-accordion .acc-group .content {
        padding: 12px 18px 16px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 70px 0 80px;
    }

    .faq-heading h2 {
        font-size: 22px;
    }

    .faq-contact-box {
        width: 100%;
        max-width: 320px;
    }
    .faq-accordion .acc-icon{
        right:0px;
    }
}

.hg_accordion_element.style3 .th-accordion .acc-group > button.collapsed:before {
    content: none;
    background-color: #FFF;
    height: none;
}

.hg_accordion_element.style3 .th-accordion .acc-group > button:before {
    background-color: #FFF !important;
}

.hg_accordion_element.style3 .th-accordion .acc-group > button {
    background-color: #FFF !important;
}

.hg_accordion_element.style3 .th-accordion {
    border-color: #DB2400;
}

.hg_accordion_element.style3 .th-accordion .acc-group {
    margin-left: 39px;
}
