.vacancies-section {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
}
.vacancies-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 13, 32, 0.4);
}
.vacancies-section__content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.vacancies-section__title h1 {
    margin: 0;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    font-size: 112px;
    text-align: center;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -3px;
}
.vacancies-section__text {
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    text-align: center;
    width: 550px;
    margin: 40px 0;
}
.faq-tab-content.aos-init {
    margin-top: 22px;
}
@media (max-width: 1130px) {
    .vacancies-section {
        height: calc(100vh - 100px);
    }
    .vacancies-section__title h1 {
        font-size: 80px;
    }
    .vacancies-section__text {
        width: 80%;
    }
}
@media (max-width: 575px) {
    .vacancies-section__title h1 {
        font-size: 60px;
    }
    .vacancies-section__text {
        width: 100%;
        margin: 20px 0;
    }
}