.bg_bottomLeft {
    position: absolute;
    left: 0;
    bottom: 0;
    /* width: 945px; */
    /* height: 904px; */
    width: 40%;

    /* height: 50%; */
    @media (max-width: 768px) {
        width: 100%;
    }
}

#faq {
    /* overflow: hidden; */
    /* max-width: unset !important; */
}

.accord__contaner {
    margin-top: var(--mar-32);
    margin-bottom: var(--mar-32);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.accord__card {
    border-radius: 16px;
    overflow: hidden;
    padding: 24px;
    cursor: pointer;
    /* background-color: #F2F9FF; */
    border: 1px solid #0862E0;
    background-color: #020E28;
    /* box-shadow: 0px 4px 20px 0px #2012351F; */

    &:not(:last-child) {
        /* border-bottom: 1px solid #313131; */
        margin-bottom: 8px;
    }

    &.open {
        & h3 {
            /* color: var(--accent1) !important; */
        }
    }
}

.accord__card_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.accord__card_title h3 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 500 !important;
    /* color: var(--accent1) !important; */
}

.accord__card_title_arrow {
    max-height: 24px;
    max-width: 24px;
    min-height: 24px;
    min-width: 24px;
    width: 100%;
    height: 100%;
    background-color: #012053;
    border-radius: 100px;
}

.accord__card_title_arrow::after,
.accord__card_title_arrow::before {
    content: "";
    position: absolute;
    background-color: white;
    width: 50%;
    height: 1px;

    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.accord__card_title_arrow::before {}

.accord__card_title_arrow::after {
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
}

.accord__card_title_arrow.active {
    background-color: var(--accent1);
}

.accord__card_title_arrow.active::before {
    background-color: white;
}

.accord__card_title_arrow.active::after {
    transform: translateY(-50%) translateX(-50%) rotate(0deg);
    background-color: white;
}

/* .accord__card_title_arrow {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);

    background-color: #000;
    -webkit-mask: url("/assets/arrowDown.svg") center/contain no-repeat;
    mask: url("/assets/arrowDown.svg") center/contain no-repeat;
    transition:
        transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1),
        background-color 0.4s;
}

.accord__card_title_arrow.active {
    transform: rotate(180deg);
    background-color: var(--accent1);
} */

.accord__card_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.accord__card.open {
    & .accord__card_title h3 {
        color: var(--accent1);
    }
}

.accord__card_content p {
    margin-top: 10px;
    margin-bottom: 0;
    /* margin-left: 37px; */
    height: 100%;
    font-size: 16px;
    max-width: 98%;
}

.accord__contaner.second {
    & .accord__card {
        padding: 0;
        padding-bottom: 24px;
        background-color: unset !important;

        &::before {
            content: none;
        }

        &:not(:last-child) {
            margin-bottom: 24px;
        }

        &::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #2b2b2b;
        }
    }

    & .accord__card_title {
        flex-direction: row;
    }

    & .accord__card_content p {
        /* margin-left: 68px; */
    }

    & .accord__card_title_arrow {
        margin-left: auto;
    }
}