.faq {
    padding-top: 136px;
}

.faq .bg {
    z-index: -9;
    position: absolute;
    top: 0;
    width: 100%;
    height: 832px;
    background: linear-gradient(180deg, #fff4f9 0%, rgba(255, 244, 249, 0) 100%);
}

.faq .home {
    z-index: 9;
    margin-bottom: 64px;
}

.faq .home .container .banner {
    padding-top: 130px;
    height: 392px;
    border-radius: 30px;
    background-color: #fce5ef;
    background-image: url("../img/new/main/faq-banner.svg");
}

.faq .home .container .banner h3 {
    margin-bottom: 16px;
    color: #181b28;
    text-align: center;
    font-size: 54px;
    font-family: "Nunito 700";
    line-height: 68px;
}

.faq .home .container .banner p {
    color: #626c8d;
    text-align: center;
    font-size: 16px;
    font-family: "Nunito 400";
    line-height: 24px;
}

.faq .answers {
    width: 580px;
    margin-bottom: 64px;
}

.faq .answers .faq-item {
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    background: #f4f7fc;
    padding: 16px 24px;
}

.faq .answers .faq-item .head {
    display: flex;
    justify-content: space-between;
    transition: all 0.2s;
}

.faq .answers .faq-item .head .title {
    color: #181b28;
    font-size: 18px;
    font-family: "Nunito 500";
    line-height: 24px;
}

.faq .answers .faq-item .head .cross {
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 12.0001L12 12.0001M12 12.0001L4 12.0001M12 12.0001L12 4M12 12.0001L12 20' stroke='%23181B28' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.faq .answers .faq-item .text {
    display: none;
    height: 0;
    opacity: 0;
    color: #181b28;
    font-size: 16px;
    font-family: "Nunito 400";
    line-height: 24px;
    transition: all 0.3s linear;
}

.faq .answers .faq-item .text .item {
    margin: 10px 0;
}

.faq .answers .faq-item .text .item:before {
    content: "—";
    margin-right: 5px;
}

.faq .answers .faq-item:not(:last-child) {
    margin-bottom: 20px;
}

.faq .answers .faq-item.opened .head {
    margin-bottom: 16px;
}

.faq .answers .faq-item.opened .head .title {
    color: #ed6b2f;
}

.faq .answers .faq-item.opened .head .cross {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M17.6568 17.6571L12 12.0003M12 12.0003L6.3431 6.34343M12 12.0003L17.6569 6.34338M12 12.0003L6.34314 17.6571' stroke='%23626C8D' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.faq .answers .faq-item.opened .text {
    display: block;
    height: auto;
    opacity: 1;
}

.faq footer {
    padding: 0;
}

.faq footer .container .bottom {
    border-top: none;
}