.faq__wrapper {
    margin: 0 auto;
    width: 94%;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: max-content;
    row-gap: 14px;
}
.faq__wrapper p {
    margin: 0 !important;
    padding: 0 !important;
    color: black !important;
    font-size: 18px !important;
}
.faq__container h2 {
    max-width: 1440px;
    width: 94%;
    text-align: left;
    margin: 0 auto 64px;
}
.faq__container {
    position: relative;
    height: max-content;
}
.faq__container > div:first-child {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: -1;
    bottom: -14%;
}
.faq_title > * {
    display: inline-block;
    vertical-align: middle;
}
.faq_title > span {
    /* color: var(--mColor) !important; */
    /* -webkit-text-fill-color: var(--mColor) !important; */
}
.faq__item {
    padding: 36px;
    position: relative;
    height: max-content;
    max-height: 500px;
    overflow: hidden;
    font-weight: 200;

    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--brad);
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.faq__item:hover {
    border-bottom: 2px solid #aa265f;
}
.faq__item p {
    font-weight: 200;
    font-size: 14px;
}
.faq__item::before {
    content: "-";
    /* color: var(--mColor); */
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}
.faq__item_title_triangle {
    /* content: "◄"; */
    position: absolute;
    right: 0%;
    top: 50%;
    width: 18px;
    transform: translateY(-50%) translateX(70%);
    font-size: 12px;
    rotate: -90deg;
    transition: rotate 1s cubic-bezier(0, 1, 0, 1);
}
.rotate {
    transform: translateY(0%) translateX(40%);
    rotate: 180deg;
}

.faq__item_title {
    cursor: pointer;
    position: relative;
    padding: 0 56px 0 24px;
    color: black;
}
.faq__item_descr {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 1s cubic-bezier(0, 1, 0, 1);
}

.faq__item_descr.show {
    /* max-height: 9999px;  */
    opacity: 1;
}
.faq__item_descr > p {
    padding: 36px 56px 0 24px !important;
    color: black;
}
.faq__item_line {
    margin: 32px 0;
    float: right;
    width: 97%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.faq__question {
    z-index: -1;
    position: absolute;
    right: 0;
    top: 100px;
}
