.rosee-faq {
    h2 {
        position: relative;
        &::before {
            content: '';
            background-image: url("../images/faq.svg");
            background-size: contain;
            background-repeat: no-repeat;
            position: absolute;
            display: none;
            right: 0;
            width: 60px;
            height: 90px;


            @media(min-width: 576px) {
                display: block;
            }

            @media (min-width: 993px) {
                right: 0;
                width: 150px;
                height: 200px;
                transform: rotate(-20deg);
            }
        }
    }
}
