/* =========================================================
   REAL GRAPHICS - FAQ.CSS
   Page-wise stylesheet generated from the existing style.css
========================================================= */

/*  45. FAQ PAGE */
.faq-section {
    padding: 100px 0;
    background: var(--paper)
}

.faq-list {
    max-width: 980px;
    margin: 0 auto;
    border-top: 1px solid var(--line)
}

.faq-item {
    border-bottom: 1px solid var(--line);
    background: transparent
}

.faq-item summary {
    list-style: none;
    min-height: 96px;
    display: grid;
    grid-template-columns: 52px 1fr 32px;
    align-items: center;
    gap: 22px;
    cursor: pointer;
    padding: 18px 0
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary>span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em
}

.faq-item summary strong {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.05;
    font-weight: 700
}

.faq-item summary i {
    justify-self: end;
    color: var(--green-dark);
    font-style: normal;
    font-size: 28px;
    transition: transform .25s var(--ease)
}

.faq-item[open] summary i {
    transform: rotate(45deg)
}

.faq-item p {
    max-width: 760px;
    margin: 0 0 28px 74px;
    color: var(--muted);
    line-height: 1.75
}

@media (max-width: 980px) {}

@media (max-width:720px) {
    .faq-section {
        padding: 75px 0;
    }

    .faq-item summary strong {
        font-size: 25px;
    }

    .faq-item summary {
        gap: 1px;
    }

    .faq-item p {
        margin: 0 0 28px 55px;
    }
}