.section-content-mask {
    height: 524px;
}
.faq-section{
    /* margin-top: 0; */
    border: none;
}
.faq-mask{
    background: linear-gradient(90deg, #403458 0%,#332546 100%);
    opacity: 0.5
}

.faq-img img{
    opacity: 0.5
}

.faq-label{
    width: 200px;
    height: 100px;
    color: var(--light-color);
    font-weight: 500;
    font-size: 20px;
}


.support {
    margin: 40px 0 70px;
    border-radius: 15px;
    background-color: #F4F1F8;
    height: 80px;
    padding: 15px;
    padding-right: 20px;
    color: var(--main-color);

    h5 {
        font-size: 20px;
    }

    p {
        margin-top: 6px;
        font-size: 12px;
    }

    a {
        padding: 0 18px;
        border-radius: 8px;
        font-size: 14px;
        height: 100%;
        width: 200px;
        background-color: var(--main-color);
        color: var(--light-color);
    }
}


@media (max-width: 768px){
.faq-content{
    order: 1;
}
.faq-img{
    order: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 2;
    img{
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
}
    .support{
        height: fit-content;
        padding: 20px;
        gap: 38px;
        text-align: center;
        a{
            width: 100%;
            height: 50px;
        }
        p{
            margin-top: 16px;
        }
    }
}