.tax-service-banner{
    position: relative;
    z-index: 1;

    >.bg{
        position: absolute;
        z-index: -1;
        inset: 0;
        >img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    >.cover{
        position: relative;
        padding-top: max(calc(444 / 1440 * 100%), 400px);
        overflow: hidden;
        >.curve{
            position: absolute;
            z-index: -1;
            inset: auto 0 0;
            min-width: 1297px;
            >.circle{
                position: absolute;
                top: 70.5%;
                right: 22.5%;
                width: 5.4%;
                aspect-ratio: 1;
                border-radius: 50%;
                background-color: var(--color-primary-3);
            }
        }
        >.container > h4{
            margin-top: 16px;
            margin-bottom: 29px;
            width: 70%;
        }
    }
}

@media screen and (width < 768px) {
    .tax-service-banner > .cover {
        padding-top: 500px;
        >.curve{
            min-width: 1200px;
        }
        >.container > h4{
            width: 100%;
            margin-bottom: 40px;
        }
    }
}