

/* Start:/local/components/componentsTheme/block.banner/templates/.default/style.css?17703802432207*/
.banner__wrapper {
    position: relative;
    width: 100%;
    height: fit-content;

    padding: 20px;
}

.banner__background {
    position: absolute;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    & img {
        position: absolute;
        top: 0px;
        left: 0px;

        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;

        border-radius: 20px;
    }
}

.banner__content {
    position: relative;
    width: 100%;
    max-width: 540px;
    min-height: clamp(360px, 6.472vw + 335.728px, 460px);
    height: fit-content;

    padding: clamp(15px, 0.324vw + 13.786px, 20px);
    
    border: solid 1px var(--bg-primary-stroke);
    border-radius: 15px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    gap: 20px;

    &::before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;

        width: 100%;
        height: 100%;
        object-fit: cover;
        
        background: #FFFFFFB2;
        backdrop-filter: blur(10px)
    }
}
.banner__content-top {
    position: relative;
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: column;
    gap: 15px;
}
.banner__title.block-title {
    margin-bottom: 0px;
}


.banner__link {
    position: relative;
    margin-top: auto;
}




@media(max-width: 800px) {
    .banner__wrapper {
        padding: 0px;
    }
    .banner__background {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 375 / 182;
    }
    .banner__content {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-height: 0px;

        background: var(--bg-primary-second);
        border: none;

        &::before {
            display: none;
        }
    }
    .banner__content-top {
        gap: 30px;
    }
    .banner__link.btn {
        width: 100%;
    }
}
@media(max-width: 500px) {
    .block-banner {
        margin-left: calc(-100vw / 2 + 100% / 2);
        margin-right: calc(-100vw / 2 + 100% / 2);
    }
}
/* End */


/* Start:/local/components/componentsTheme/block.vacancy-form/templates/.default/style.css?17731303673594*/
.vacancy-form__wrapper {
    position: relative;
    width: 100%;
    height: fit-content;

    display: flex;
    align-items: start;
    gap: 60px;
}

.vacancy-form__content {
    position: relative;
    width: 0%;
    flex-grow: 1;
}

.vacancy-form__subtitle {
    position: relative;
    color: var(--text-primary-main);
    margin-bottom: 15px;
}

.vacancy-form__text {
    position: relative;
    margin-bottom: 30px;
}

.vacancy-form__advantages {
    position: relative;
    width: 100%;
    height: fit-content;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(10px, 0.647vw + 7.573px, 20px);
}

.vacancy-form__advantage {
    position: relative;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: start;
    gap: clamp(10px, 0.324vw + 8.786px, 15px);

    padding: clamp(15px, 0.324vw + 13.786px, 20px);
    border: solid 1px var(--bg-primary-stroke);
    border-radius: 15px;
}
.vacancy-form__advantage-icon {
    position: relative;
    width: 0%;
    min-width: 30px;
    height: 30px;
    border-radius: 5px;
    
    background: var(--colors-main);

    display: flex;
    align-items: center;
    justify-content: center;

    & img {
        position: relative;

        display: block;

        width: 66.7%;
        height: 66.7%;

        object-fit: contain;
        object-position: center;
    }
}
.vacancy-form__advantage-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vacancy-form__advantage-title {
    position: relative;

    color: var(--text-primary-head);
    font-weight: 700;
    font-size: clamp(14px, 0.129vw + 13.515px, 16px);
    line-height: 120%;
}
.vacancy-form__advantage-text {
    position: relative;
    
    color: var(--text-primary-main);
    font-weight: 400;
    font-size: clamp(14px, 0.129vw + 13.515px, 16px);
    line-height: 130%;
}



.vacancy-form__form-wrapper {
    position: relative;
    width: clamp(420px, 8.696vw + 333.043px, 500px);
    padding: clamp(15px, 0.324vw + 13.786px, 20px);

    background: var(--bg-primary-second);
    border-radius: 20px;
}
.vacancy-form__form-head {
    position: relative;
    margin-bottom: 40px;
}
.vacancy-form__form-title {
    position: relative;

    color: var(--text-primary-head);
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;

    margin-bottom: 15px;
}
.vacancy-form__form-subtitle {
    position: relative;

    color: var(--text-primary-main);
    font-weight: 400;
    font-size: clamp(14px, 0.129vw + 13.515px, 16px);
    line-height: 130%;
}
.vacancy-form__form {
    & [form-send] {
        width: 100%;
        margin-top: 10px;
    }
}

@media(max-width: 1200px) and (min-width: 1001px) {
    .vacancy-form__advantages {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 1000px) {
    .vacancy-form__wrapper {
        flex-direction: column;
    }
    .vacancy-form__form-wrapper,
    .vacancy-form__content {
        width: 100%;
    }
}

@media(max-width: 680px) {
    .vacancy-form__advantages {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 400px) {
    .vacancy-form__advantage {
        flex-direction: column;
    }
    .vacancy-form__advantage-content {
        width: 100%;
    }

    .vacancy-form__form-wrapper {
        width: 100vw;
        margin-left: calc(-100vw / 2 + 100% / 2);
        margin-right: calc(-100vw / 2 + 100% / 2);
    }
}
/* End */


/* Start:/local/components/componentsTheme/component.form/templates/.default/style.css?1770380243306*/
.component-form.default {
    position: relative;
    width: 100%;

    & .form {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 10px;

        & .consent-to-processing,
        & .drag-n-drop {
            margin-top: 10px;
        }
    }
}
/* End */


/* Start:/local/components/bitrix/system.pagenavigation/templates/.default/style.css?17712357861363*/
.system-pagenavigation {
    position: relative;

    width: 100%;
    max-width: 625px;
    height: fit-content;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin: 0 auto;
    margin-top: 30px;

    @media(max-width: 700px) {
        & {
            max-width: 100%;
        }
    }
}

.system-pagenavigation__pages {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    flex-wrap: wrap;

    width: fit-content;

    & li {
        & > span,
        & > a {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;

            padding: 5px;

            background: none;
            border-radius: 5px;

            transition: var(--transition);

            min-width: 30px;
            min-height: 30px;

            color: var(--text-primary-second);
            font-weight: 700;
            font-style: Bold;
            font-size: 16px;
            line-height: 120%;
            text-align: center;
            vertical-align: middle;
        }

        & > span,
        & > a:hover {
            color: var(--text-primary-head);
            background: var(--colors-main);
        }
    }
}
/* End */


/* Start:/local/templates/theme/components/bitrix/news/vacancies/bitrix/news.list/.default/style.css?17730889111158*/
.archive-vacancies__sections-select {
    margin-bottom: 30px;
}

.archive-vacancies__sections {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: start;

    flex-wrap: wrap;

    margin-bottom: 30px;

    & a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 17px 25px;

        text-align: center;
        color: var(--text-primary-main);
        font-weight: 700;
        font-size: 16px;
        line-height: 100%;

        background: var(--bg-primary-main);
        border: solid 1px var(--bg-primary-stroke);
        border-radius: 10px;

        transition: var(--transition);

        &:hover,
        &.active {
            background: var(--colors-main);
            border-color: var(--colors-main);
            color: var(--text-primary-head);
        }
    }
}

@media(min-width: 841px) {
    .archive-vacancies__sections-select {
        display: none;
    }
}
@media(max-width: 840px) {
    .archive-vacancies__sections {
        display: none;
    }
}
/* End */


/* Start:/local/components/componentsTheme/item.vacancy/templates/.default/style.css?17730888122289*/
/* wrapper */
.wrapper-vacancies {
    position: relative;
    width: 100%;
    height: fit-content;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


/* item */
.item-vacancy {
    position: relative;
    width: 100%;
    height: 100%;

    padding: 10px;
    border-radius: 15px;
    border: solid 1px var(--bg-primary-stroke);

    background: var(--bg-primary-main);

    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 0.4733rem + 0.6472vw, 1.25rem);
}
.item-vacancy__head {
    position: relative;
    width: 100%;
    height: fit-content;
    min-height: 116px;

    background: var(--bg-primary-second);
    border-radius: 10px;

    padding: 20px;
}

.item-vacancy__head .item-vacancy__title {
    position: relative;
    font-weight: 700;
    font-size: clamp(1rem, 0.9393rem + 0.2589vw, 1.25rem);
    line-height: 120%;

    color: var(--text-primary-head);
}

.item-vacancy__body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.item-vacancy__hh-link {
    position: relative;
    display: block;

    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: var(--text-primary-head);
    text-align: center;

    padding: 17px 25px;
    border: solid 1px var(--bg-alt-main);
    border-radius: 10px;

    width: fit-content;
    height: fit-content;

    margin-left: auto;
}

.item-vacancy__salary {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-vacancy__salary-label {
    position: relative;

    font-weight: 400;
    font-size: 14px;
    line-height: 130%;

    color: var(--text-primary-main);
}

.item-vacancy__salary-value {
    position: relative;

    font-weight: 700;
    font-size: 16px;
    line-height: 120%;

    color: var(--text-primary-head);
}

@media(max-width: 1050px) {
    .wrapper-vacancies {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 550px) {
    .item-vacancy__body {
        flex-direction: column;
    }
    .item-vacancy__hh-link {
        width: 100%;
    }
    .item-vacancy__salary {
        width: 100%;
    }
}
/* End */
/* /local/components/componentsTheme/block.banner/templates/.default/style.css?17703802432207 */
/* /local/components/componentsTheme/block.vacancy-form/templates/.default/style.css?17731303673594 */
/* /local/components/componentsTheme/component.form/templates/.default/style.css?1770380243306 */
/* /local/components/bitrix/system.pagenavigation/templates/.default/style.css?17712357861363 */
/* /local/templates/theme/components/bitrix/news/vacancies/bitrix/news.list/.default/style.css?17730889111158 */
/* /local/components/componentsTheme/item.vacancy/templates/.default/style.css?17730888122289 */
