/* FAQ Section */
section.technologies-faq-section {
    background: radial-gradient(60% 60% at 0% 50%, rgba(74, 121, 152, 0.06) 0%, rgba(74, 121, 152, 0) 55%), linear-gradient(180deg, #F0F5F8 0%, #F7F9FB 100%);
}

.technologies-faq-section .container {
    gap: 32px;
}

.technologies-faq-section .section-heading {
    color: var(--big-stone);
    text-align: center;
}

.technologies-faq-section  .faq-list {
    width: 100%;
    max-width: 780px;
    margin: 16px auto 0;
}

.technologies-faq-section .faq-item {
    border-bottom: 1px solid var(--athens-gray);
}

.technologies-faq-section .faq-item:first-child {
    border-top: 1px solid var(--athens-gray);
}

.technologies-faq-section .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    background: none;
    border: 0;
    outline: none;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--big-stone);
    text-align: left;
}

.technologies-faq-section .faq-question:hover {
    color: var(--raw-sienna)
}

.technologies-faq-section .faq-icon {
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: url('../../assets/images/acc-icon.svg') no-repeat center;
    background-size: contain;
    transition: transform .3s ease;
}

.technologies-faq-section .faq-question:hover .faq-icon {
    background: url('../../assets/images/acc-icon-active.svg') no-repeat center;
}

.technologies-faq-section .faq-answer {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
}

.technologies-faq-section .faq-answer-inner {
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    color: var(--pale-sky);
    padding-bottom: 1.5rem;
}

.technologies-faq-section .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media only screen and (max-width: 768px) {
    section.technologies-faq-section {
        padding-bottom: 31px;
    }

    .technologies-faq-section .container {
        gap: 14px;
    }

    .technologies-faq-section .section-heading {
        text-transform: capitalize;
        text-align: left;
    }

    .technologies-faq-section  .faq-list {
        margin-top: 14px;
        margin-bottom: 0;
    }

    .technologies-faq-section .faq-item:first-child {
        border-top: none;
    }

    .technologies-faq-section .faq-question {
        font-size: 16px;
        padding: 16px 0;
    }

    .technologies-faq-section .faq-answer-inner {
        font-size: 16px;
        line-height: 18px;
    }
}