


/* FAQ CONTAINER */

.faq-container {
    width: 100%;
    max-width: 800px;
    margin: 40px 0;
}


/* FAQ ITEM */

.faq-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.faq-item summary {
    width: 100%;

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

    padding: 10px 0;

    cursor: pointer;
    list-style: none;

    font-size: 16px;
    font-weight: 500;

    transition: color 0.25s ease;
}

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


/* PLUS ICON */

.faq-icon {
    flex-shrink: 0;

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

    width: 34px;
    height: 34px;

    font-size: 22px;
    font-weight: 300;
    line-height: 1;

    transition: all .3s ease;
}

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


/* ANSWER */

.faq-answer {
    width: 100%;
    padding: 0 60px 30px 0;
    text-align: left;
}

.faq-answer p {
    margin: 0;

    font-size: 16px;
    line-height: 1.7;
    color: rgba(20, 40, 61, 0.7);
}


/* MOBILE */

@media (max-width: 768px) {

    .faq-item summary {
        padding: 22px 0;
        font-size: 17px;
        line-height: 1.3;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .faq-answer {
        padding: 0 45px 24px 0;
    }

    .faq-answer p {
        font-size: 15px;
    }
}