.faq {
    background: #E2DDDC;
}

.faq--container {
    max-width: 1200px;
    margin-inline: auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

@media screen and (min-width: 992px) {
    .faq--container {
        padding: 80px 40px;
        flex-direction: row;
        gap: 24px;
    }
}

@media screen and (min-width: 1280px) {
    .faq--container {
        padding-inline: 0;
    }
}

@media screen and (min-width: 992px) {
    .faq--header {
        max-width: 440px;
        flex-shrink: 0;
    }
}

.faq--header .more {
    display: none;
    margin-top: 40px;
    font-size: 0.9375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    color: white;
    background: var(--violet);
    border: 1px solid var(--violet);
    border-radius: 4px;
    padding: 12px 16px;
    transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.faq--header .more:hover {
    color: var(--violet);
    background: white;
    border-color: white;
}

@media screen and (min-width: 992px) {
    .faq--header .more {
        display: inline-block;
        margin-top: 40px;
        font-size: 1.125rem;
    }
}

@media screen and (min-width: 1024px) {
    .faq--header .more {
        padding: 16px 28px;
    }
}

.faq--content .accordion-item {
    border-bottom: 1px solid var(--violet);
}

.faq--content .accordion-item:first-child {
    border-top: 1px solid var(--violet);
}

.faq--content .accordion-header {
    cursor: pointer;
    color: var(--violet);
    font-size: 1.375rem;
    padding: 16px 0;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

@media screen and (min-width: 992px) {
    .faq--content .accordion-header {
        padding: 24px 0;
        font-size: 28px;
        gap: 24px;
    }
}

.faq--content .accordion-header::after {
    content: "";
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: url("images/chevron-down.svg") no-repeat center;
    background-size: contain;
    rotate: -0.25turn;
    transition: rotate 0.2s ease;
}

.faq--content .open-accordion .accordion-header::after {
    rotate: none;
}

.faq--content .accordion-body {
    display: none;
    padding-bottom: 16px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;
}

@media screen and (min-width: 992px) {
    .faq--content .accordion-body {
        padding-bottom: 24px;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }
}

.faq--content .accordion-body a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.faq h2 {
    color: var(--violet);
    font-family: var(--play);
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
}

@media screen and (min-width: 992px) {
    .faq h2 {
        font-size: 70px;
        line-height: 70px;
    }
}

/*# sourceMappingURL=style.css.map */