/* SECTION */
.faq-section {
    padding: 80px 0;
}

/* HEADING */
.faq-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #000;
}

/* ITEM */
.faq-item {
    margin-bottom: 20px;
}

/* CLICKABLE CARD */
.faq-toggle {
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 29.6px rgba(0,0,0,.09);
    border-radius: 11px;
    border: none;
    padding: 17px 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* TITLE */
.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 23px;
    color: #000;
    padding-right: 20px;
}

/* CONTENT */
.faq-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s ease;
}

/* CONTENT INNER */
.faq-content p {
    padding: 20px;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    line-height: 23px;
}

/* ICON */
.faq-icon {
    position: relative;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.faq-circle {
    position: absolute;
    inset: 0;
    background: #EA5829;
    border-radius: 50%;
}

/* PLUS / MINUS */
.faq-plus::before,
.faq-plus::after {
    content: '';
    position: absolute;
    background: #fff;
    transition: transform .3s ease;
}

.faq-plus::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-plus::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* OPEN STATE */
.faq-item.is-open .faq-circle {
    background: #fff;
    border: 1px solid #EA5829;
}

.faq-item.is-open .faq-plus::before {
    background: #EA5829;
}

.faq-item.is-open .faq-plus::after {
    transform: translate(-50%, -50%) scaleY(0);
}
