.faq {
    margin-top: 231px;
    margin-bottom: 50px;
    min-height: 368px;
}

.faq__container {
    max-width: 1319px;
    padding: 0 24px;
    margin: 0 auto;
}

.faq__box-wrapper {
    display: flex;
    max-width: 1196px;
    position: relative;
}

.faq__box {
    display: flex;
    justify-content: flex-end;
}

.faq__box-wrapper:after {
    content: "";
    position: absolute;
    bottom: -244px;
    right: -301px;
    width: 310px;
    height: 310px;
    background-image: url("../images/faq/coins.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.faq__left {
    padding-right: 96px;
}

.faq__right {
    padding-left: 91px;
    position: relative;
}

.faq__right:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 368px;
    background-color: #1F1E23;
}

.faq__title {
    font-size: 51px;
    font-weight: 700;
    line-height: normal;
    color: #FFF;
    margin-bottom: 112px;
    position: relative;
}

.faq__title span {
    position: relative;
    z-index: 10;
}

.faq__title:before {
    content: "";
    position: absolute;
    top: -100px;
    left: -300px;
    z-index: 5;
    width: 514px;
    height: 305px;
    border-radius: 514px;
    background: #040406;
    filter: blur(47px);
}

.faq__email-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 28px;
}

.faq__email {
    display: flex;
    position: relative;
    z-index: 10;
}

.faq__email-title {
    color: #8D929C;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
}

.faq__email-link {
    color: #8D929C;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    text-decoration-line: underline;
}

.faq__email-icon {
    width: 79px;
    height: 79px;
    background-color: #0F0E14;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.accordion__container {
    display: flex;
    flex-direction: column;
    row-gap: 35px;
}

.accordion__item-title {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: #FFF;
    cursor: pointer;
    padding-bottom: 11px;
}

.accordion__item-icon {
    position: relative;
    width: 34px;
    height: 34px;
    background-color: #0C0C13;
    border-radius: 50%;
    margin-left: 5px;
}

.accordion__item-icon:before,
.accordion__item-icon:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 1px;
    background-color: #FFFFFF;
    transition: transform .3s ease-in-out;
}

.accordion__item-title .accordion__item-icon:before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item-title.accordion__item-title-active .accordion__item-icon:before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__item-body {
    overflow: hidden;
    height: 0;
}

.accordion__item-body .content {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    color: #8D929C;
}

@media (max-width: 1050px) {
    .faq__right {
        padding-left: 30px;
    }
}

@media (max-width: 850px) {
    .accordion__container {
        position: relative;
        z-index: 10;
    }

    .faq__box-wrapper {
        flex-direction: column;
        row-gap: 50px;
    }

    .faq__right:before {
        display: none;
    }

    .faq__title {
        margin-bottom: 30px;
    }

    .faq__left,
    .faq__right {
        padding: 0;
    }
}

@media (max-width: 500px) {
    .faq {
        margin-top: 120px;
    }

    .faq__container {
        padding: 0 15px;
    }

    .faq__title {
        font-size: 34px;
    }
}