.jobs-wrapper {
    box-shadow: 0px 0px 33.9px 5px #C2C2C230;
    border-radius: clamp(32px, 3vw, 48px);
    padding: clamp(16px, 2vw, 32px) clamp(18px, 4vw, 56px) 32px;
    overflow: hidden;
    position: relative;
    .title-box {
        background: #FDC301;
        width: 100%;
        border-radius: clamp(24px, 2vw, 32px);
        padding: 52px clamp(12px, 3vw, 42px) 87px;
        margin-bottom: clamp(84px, 8vw, 104px);
        position: relative;
        overflow: hidden;
        .s-desc,
        .s-title {
            position: relative;
            z-index: 1;
        }
        &:before {
            content: "";
            width: 100%;
            height: 77px;
            position: absolute;
            background: radial-gradient(#ffffff26, transparent);
            right: 50%;
            top: 50%;
            transform: translate(50%, -50%) rotate(-12deg);
            z-index: 0;
        }
    }
    img {
        max-width: clamp(460px, 39vw, 560px);
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
    }
}