.vacancy-feedback-section {
    margin: 60px 0;
}

.vacancy-feedback-wrapper {
    border-radius: var(--border-radius-m);
    background: url(./image/contact-us-1.png) 100px -170px / 300px no-repeat,
    url(./image/contact-us-2.png) 100px 90% / 130px no-repeat,
    url(./image/contact-us-2.png) 85% 50px / 50px no-repeat,
    url(./image/contact-us-1.png) 103% 239px / 176px no-repeat,
    var(--color-primary-blue-100);
    padding: 56px 0;
    display: flex;
    min-height: 340px;
}

.vacancy-feedback {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vacancy-feedback .vacancy-feedback-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    text-align: center;
    color: var(--color-base-black-500);
    margin-bottom: 16px;
}

.vacancy-feedback .vacancy-feedback-subtitle {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: var(--color-base-black-400)
}

@media (max-width: 1439px) {
    .vacancy-feedback-wrapper {
        padding: 46px 0;
    }

    .vacancy-feedback .vacancy-feedback-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .vacancy-feedback .vacancy-feedback-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .vacancy-feedback .vacancy-feedback-subtitle {
        margin-bottom: 16px;
    }

    .vacancy-feedback-wrapper {
        padding: 46px 24px;
    }
}