:root {
    --color-title: #4b0099;
    --color-text-active: #231f20;
    --color-text: #b2b2b2;
    --color-bg-category: #f5f5f5;
    --color-bg-subcategory: #f9f9f9;
    --color-border: #dbdbdb;
    --color-icons-hover: #676565;
    --color-btn-active: #610cb9;
    --color-btn: #cdc3eb;
}

.color-title {
    color: var(--color-title);
}

.color-text-active {
    color: var(--color-text-active);
}

.color-text {
    color: var(--color-text);
}

.color-bg-category {
    color: var(--color-bg-category);
}

.color-bg-subcategory {
    color: var(--color-bg-subcategory);
}

.color-border {
    color: var(--color-border);
}

.color-icons-hover {
    color: var(--color-icons-hover);
}

.color-btn-active {
    color: var(--color-btn-active);
}

.color-btn {
    color: var(--color-btn);
}

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

.manrope-btn {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    line-height: 130%;
}

.manrope-input {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    line-height: 120%;
}

.manrope-option {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    line-height: 120%;
}

.manrope-title {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 120%;
    color: var(--color-title);
}

.manrope-checkbox {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    line-height: 120%;
}

.manrope-placeholder {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    line-height: 120%;
}


.shadow {
    box-shadow: 0px 0px 3px 0px rgba(103, 101, 101, 0.20);
}

.shadow-active {
    box-shadow: 0px 3px 10px 0px rgba(103, 101, 101, 0.25);
}

.wrapper {
    max-width: 1214px;
    width: 100%;
    margin: 44px auto 90px;
    padding: 0 15px;
}


/* Cтили заголовка и элемента вопрос-ответ */
.faq__title {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 32px;
    color: #231f20;
    margin-bottom: 5px;
    font-weight: 500;
}

.faq__items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__item {
    border-bottom: 1px solid #dbdbdb;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

/* Стили вопроса */
.quest {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    user-select: none;
    position: relative;
}

.quest__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quest__arrow {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quest.active .quest__arrow {
    transform: rotate(180deg);
}

.quest__text {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #231F20;
    line-height: 18px;
    transition: color 0.3s ease;
    width: 500px;
}

/* Стили ответа */
.answ {
    display: none;
    overflow: hidden;
}

.answ__content {
    width: 700px;
    margin-bottom: 32px;
    animation: slideDown 0.4s ease;
}

.answ__content p {
    font-family: "Manrope", sans-serif;
    color: #231F20;
    line-height: 19px;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 0;
}

/* Анимации */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media all and (max-width: 961px) {
    .faq__title {
        font-size: 15px;
    }

    .quest {
        min-height: 60px;
        padding: 20px 0;
    }

    .quest__text {
        font-size: 13px;
        width: 100%;
        margin-right: 20px;
        line-height: 18px;
        flex: 1;
    }

    .answ__content {
        width: 100%;
    }

    .answ__content p {
        font-size: 13px;
    }
}