.vacancy-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.vacancy-body {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 120px;
}

.vacancy-content {
    width: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vacancy-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vacancy-top__title {
    font-family: var(--font-family);
    font-size: 72px;
    font-weight: 400;
    line-height: 69px;
    letter-spacing: -3px;
    text-align: left;
    color: var(--black);
    margin-bottom: 40px;
}

.vacancy-top__text {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: var(--black);
    margin-bottom: 10px;
}

.vacancy-top__mode {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: var(--black);
}

.vacancy-top__mode span {
    font-size: 15px;
    line-height: 18px;
    color: var(--grey);
}

.vacancy-keywords {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vacancy-keywords__title {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    text-align: left;
    color: var(--black);
}

.vacancy-keywords__content {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vacancy-keywords__content span {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    text-align: left;
    padding: 5px 10px;
    border-radius: 12px;
    background-color: var(--grey);
    color: var(--white);
}

.vacancy-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vacancy-block__title {
    font-family: var(--font-family);
    margin-top: 1em;
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    text-align: left;
    color: var(--black);
}

.vacancy-block__list {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vacancy-block__list-item {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.vacancy-block__list-item span {
    width: 20px;
    flex-shrink: 0;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: -2px;
    text-align: left;
    color: #37373766;
}

.vacancy-block__list-item p {
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: var(--black);
}

.vacancy-block__list-item p a {
    color: var(--black);
    border-bottom: 1px solid var(--black);
}

/*************************************/

/*************** Media ***************/

@media only screen and (max-width: 992px) {

    .vacancy {
        padding: 80px 0 60px;
    }

    .vacancy-row {
        gap: 30px;
    }

    .vacancy-top__title {
        font-size: 52px;
        line-height: 48px;
    }

    .vacancy-top__text,
    .vacancy-top__mode {
        font-size: 16px;
        line-height: 18px;
    }

}

@media only screen and (max-width: 480px) {

    .vacancy-top__title {
        font-size: 42px;
        line-height: 38px;
    }

    .vacancy-top__text {
        margin-bottom: 5px;
    }

    .vacancy-top__text,
    .vacancy-top__mode {
        font-size: 14px;
        line-height: 16px;
    }

    .vacancy-top__mode span {
        font-size: 13px;
        line-height: 15px;
    }

    .vacancy-block__title,
    .vacancy-keywords__title {
        font-size: 20px;
        line-height: 22px;
    }

    .vacancy-block {
        gap: 15px;
    }

    .vacancy-block__list {
        gap: 6px;
    }

    .vacancy-block__list-item span {
        width: 15px;
        font-size: 13px;
        line-height: 15px;
    }

    .vacancy-block__list-item p {
        font-size: 13px;
        line-height: 15px;
    }

}
