.faq_item {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--1px-Stroke, #242C35);
    background: #FFFBF3;
    box-shadow: 1px 1px 0px 0px #242C35;
    padding: 34px;
    box-sizing: border-box;
  	cursor: pointer;
}

.faq_question {
    color: #242C35;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off;
    font-family: "Grenette Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%;
    letter-spacing: -0.8px;
}

.faq_question h3 {
    color: inherit;
    leading-trim: inherit;
    text-edge: inherit;
    font-feature-settings: inherit;
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.faq_answer {
    color: #242C35;
    leading-trim: both;
    text-edge: cap;
    font-family: "Medium LL";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    width: 600px;
    max-width: 100%;
}

.faq_bottom {
    padding-top: 40px;
    display: none;
}

.faqs_holder {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.faq_item .faq_top svg {
    transform: rotate(0deg);
    transition: transform 300ms;
    -webkit-transition: transform 300ms;
}

.faq_item.active .faq_top svg {
    transform: rotate(135deg);
    transition: transform 300ms;
    -webkit-transition: transform 300ms;
}