

/* Start:/rabota/style.css?178238498744129*/
.vacancy-hero {
    position: relative;
    min-height: 600px;
    margin-top: 10px;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    background-image: url("/local/templates/nahodu/images/vacancy-banner9.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.vacancy-hero__content {
    max-width: 820px;
    padding-left: 80px;
    transform: translateY(45px);
}

.vacancy-hero__title {
    margin: 0 0 24px;
    max-width: 560px;
    font-family: "Inter", sans-serif;
    font-size: 46px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1f2933;
    margin-bottom: 42px;
}

.vacancy-hero__title span {
    display: block;
}

.vacancy-hero__title-accent {
    color: #a8122a;
}

.vacancy-hero__benefits {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 18px 42px;
    margin: 32px 0 40px;
    padding: 0;
    list-style: none;
}

.vacancy-hero__benefits li {
    position: relative;
    padding-left: 28px;
    color: #1f2933;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

.vacancy-hero__benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 8px;
    height: 14px;
    border-right: 2px solid #c62a43;
    border-bottom: 2px solid #c62a43;
    transform: rotate(45deg);
}

.vacancy-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 36px;
    border-radius: 12px;
    background: #a8122a;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(168, 18, 42, .25);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.vacancy-hero__btn:hover {
    background: #8f1025;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(168, 18, 42, .32);
}

.vacancy-mobile-benefits {
    display: none;
}

.vacancy-directions {
    padding: 72px 0 40px;
}

.vacancy-directions__head {
    margin-bottom: 50px;
}

.vacancy-directions__head h2 {
    margin: 0;
    color: #1f2933;
    font-family: Inter, Arial, sans-serif;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-transform: none;
    text-align: center;
}

.vacancy-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.vacancy-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(58, 58, 58, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.vacancy-card:hover {
    transform: translateY(-4px);
    border-color: rgba(132, 27, 45, .18);
    box-shadow: 0 22px 46px rgba(58, 58, 58, .10);
}

.vacancy-card__image {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    overflow: hidden;
    z-index: 1;

    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}

.vacancy-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: saturate(.92) contrast(.96);
    transition: transform .35s ease;
}

.vacancy-card:hover .vacancy-card__image img {
    transform: scale(1.04);
}

.vacancy-card__image::before,
.vacancy-card__image::after {
    display: none;
}

.vacancy-card__content {
    position: relative;
    z-index: 2;

    min-height: 270px;
    margin-left: 40%;
    padding: 26px 46px 30px 36px;
    background: #fff;
    clip-path: none;
    display: flex;
    flex-direction: column;
}

.vacancy-card__content::before {
    display: none;
}

.vacancy-card__content::after {
    display: none;
}

.vacancy-card h3 {
    min-height: 56px;
    margin: 0 0 12px;
    display: flex;
    align-items: flex-start;
    color: #1f2933;
    font-family: "Inter", sans-serif;
    font-size: 27px;
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.vacancy-card p {
    max-width: 410px;
    margin: 0 0 28px;

    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}

.vacancy-card__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #841b2d;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
}

.vacancy-card__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 126px;
    height: 1px;

    background: rgba(132, 27, 45, .45);
}

.vacancy-card__link span {
    font-size: 22px;
    transition: transform .2s ease;
}

.vacancy-card__link:hover span {
    transform: translateX(4px);
}

.vacancy-employer {
    padding: 55px 0 60px;
    background: #f5f3f1;
    overflow: hidden;
}

.vacancy-employer__intro {
    margin-bottom: 40px;
}

.vacancy-employer__logo {
    margin-bottom: 32px;
    text-align: center;
    position: relative;
}

.vacancy-employer__logo::before {
    content: "";
    position: absolute;

    left: 50%;
    top: 50%;

    width: 520px;
    height: 180px;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        ellipse,
        rgba(255,255,255,.9) 0%,
        rgba(255,255,255,0) 70%
    );

    pointer-events: none;
    z-index: 0;
}

.vacancy-employer__logo img {
    width: 100%;
    max-width: 630px;
    opacity: .92;
    position: relative;
    z-index: 1;
    filter:
       drop-shadow(
          0 8px 18px rgba(58,58,58,.14)
       )
       drop-shadow(
          0 2px 8px rgba(132,27,45,.10)
    );
}

.vacancy-employer__text {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 64px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.vacancy-employer__divider {
    width: 1px;
    background: rgba(132,27,45,.28);
    min-height: 140px;
}

.vacancy-employer__col p {
    margin: 0;

    color: #1f2933;
    font-size: 21px;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.vacancy-employer__benefits {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.benefit-row {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 48px;
}

.benefit-row--reverse {
    grid-template-columns: .9fr 1.1fr;
}

.benefit-row__image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: 380px;
}

.benefit-row__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(.99) saturate(.99);
    transition: transform .8s ease, filter .8s ease;
}

.benefit-row:hover .benefit-row__image img {
    transform: scale(1.04);
    filter: contrast(1) saturate(.95);
}

.benefit-row__content {
    max-width: 460px;
}

.benefit-row__content h3 {
    margin: 0 0 24px;

    color: #111827;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 650;
    letter-spacing: -.03em;
}

.benefit-row__content p {
    margin: 0;

    color: #3f3f46;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 400;
}

.benefit-row--reverse .benefit-row__content {
    margin-left: auto;
}

.benefit-row__image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,.06) 0%,
        rgba(0,0,0,.22) 100%
    );
}

.vacancy-employer__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    margin: 40px 0 50px;
}

.vacancy-employer__scroll span {
    width: 17px;
    height: 17px;

    border-right: 2.5px solid #841b2d;
    border-bottom: 2.5px solid #841b2d;

    transform: rotate(45deg);

    opacity: .35;

    animation: vacancyArrow 2s infinite;
}

.vacancy-employer__scroll span:nth-child(2) {
    animation-delay: .2s;
}

.vacancy-employer__scroll span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes vacancyArrow {
    0% {
        opacity: .15;
        transform: rotate(45deg) translate(-2px, -2px);
    }

    50% {
        opacity: .8;
    }

    100% {
        opacity: .15;
        transform: rotate(45deg) translate(6px, 6px);
    }
}

.vacancy-stories {
    padding: 60px 0 40px;
    background: #f7f7f7;
    overflow: hidden;
}

.vacancy-stories__head {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
}

.vacancy-stories__label {
    margin-bottom: 16px;
    color: #841b2d;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.vacancy-stories__head h2 {
    margin: 0 0 26px;
    color: #1f2933;
    font-size: 40px;
    line-height: 1.05;
    font-family: Inter, Arial, sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em;
    text-transform: none;
}

.vacancy-stories__head p {
    max-width: 760px;
    margin: 0 auto;
    color: #3a3a3a;
    font-size: 22px;
    line-height: 1.65;
    font-weight: 400;
}

.vacancy-stories__main {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    height: 420px;
    min-height: 0;
    margin-bottom: 32px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    box-shadow: 0 18px 46px rgba(58, 58, 58, .08);
}

.vacancy-stories__photo {
    position: relative;
    height: 420px;
    min-height: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}

.vacancy-stories__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(.96);
}

.vacancy-stories__content {
    position: relative;
    padding: 58px 82px 46px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vacancy-stories__year {
    margin-bottom: 12px;
    color: #841b2d;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.vacancy-stories__content h3 {
    margin: 0 0 18px;
    color: #1f2933;
    font-family: "Inter", sans-serif;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.vacancy-stories__line {
    width: 72px;
    height: 3px;
    margin-bottom: 26px;
    background: #841b2d;
    border-radius: 2px;
}

.vacancy-stories__text {
    max-width: 460px;
    margin: 0 0 34px;
    color: #1f2933;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 450;
}

.vacancy-stories__quote {
    display: inline-block;
    width: fit-content;
    padding: 18px 22px;
    position: relative;
    background: #f5f3f1;
    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.55;
    border-radius: 10px;
}

.vacancy-stories__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #841b2d;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.vacancy-stories__arrow--prev {
    left: 22px;
}

.vacancy-stories__arrow--next {
    right: 22px;
}

.vacancy-stories__list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.vacancy-person {
    padding: 0;
    overflow: hidden;
    text-align: left;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(58, 58, 58, .07);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.vacancy-person:hover,
.vacancy-person--active {
    transform: translateY(-3px);
    border-color: rgba(132, 27, 45, .28);
    box-shadow: 0 18px 38px rgba(58, 58, 58, .11);
}

.vacancy-person__photo {
    flex: 0 0 150px;
    display: block;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #e6e6e6;
    line-height: 0;
}

.vacancy-person__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(.96);
    transition: transform .3s ease;
}

.vacancy-person:hover .vacancy-person__photo img {
    transform: scale(1.04);
}

.vacancy-person__name,
.vacancy-person__year,
.vacancy-person__path {
    display: block;
}

.vacancy-person__name {
    height: 20px;
    min-height: 34px;
    padding: 16px 16px 0;
    color: #1f2933;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.vacancy-person__year {
    padding: 12px 16px 18px;
    color: #841b2d;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
}

.vacancy-person__path {
    padding: 8px 16px 0;
    color: #3a3a3a;
    font-size: 17px;
    line-height: 1.45;
    min-height: 78px;
}

.vacancy-person--active {
    border: 2px solid #841b2d;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(132,27,45,.15);
}

.vacancy-person--active .vacancy-person__name {
    color: #841b2d;
}

.vacancy-final-cta__content {
    max-width: 920px;
    margin: 90px auto 0;
    text-align: center;
}

.vacancy-final-cta__content h2 {
    margin: 0 0 24px;
    color: #1f2933;
    font-size: 32px;
    line-height: 1.08;
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.04em;
}

.vacancy-final-cta__content p {
    margin: 0 0 42px;
    color: #5a5a5a;
    font-size: 24px;
    line-height: 1.45;
}

.vacancy-final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 360px;
    height: 68px;
    padding: 0 38px;
    background: #a8122a;
    color: #fff;
    border-radius: 16px;
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(168, 18, 42, .22);
    transition: transform .25s ease, box-shadow .25s ease;
}

.vacancy-final-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(168, 18, 42, .28);
}

.vacancy-final-cta__button span {
    font-size: 28px;
    line-height: 1;
}

.vacancy-hero__numbers {
    display: inline-flex;
    align-items: flex-start;
    gap: 32px;
    margin: 0 0 34px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(31, 41, 51, .14);
    text-align: center;
}

.vacancy-hero__number {
    position: relative;
    min-width: 100px;
}

.vacancy-hero__number:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -13px;
    width: 1px;
    height: 48px;
    background: rgba(132, 27, 45, .22);
}

.vacancy-hero__number strong {
    display: block;
    margin-bottom: 5px;
    color: #841b2d;
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.vacancy-hero__number span {
    display: block;
    color: #1f2933;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
}

.vacancy-places {
    padding: 90px 0 70px;
    background: #f7f7f7;
}

.vacancy-life {
    padding: 70px 0 90px;
    background: #f7f7f7;
}

.vacancy-section-head {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.vacancy-section-head h2 {
    margin: 0 0 18px;
    color: #1f2933;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.vacancy-section-head p {
    margin: 0 auto;
    color: #4b5563;
    font-size: 22px;
    line-height: 1.6;
}

.vacancy-section-head--life h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 18px auto 0;
    background: #841b2d;
    border-radius: 2px;
}

/* ============================= */
/* Рабочее место / автосервисы */
/* ============================= */

.vacancy-places {
    padding: 90px 0;
    background: #f5f3f1;
}

.vacancy-places .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.vacancy-section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.vacancy-section-head h2 {
    margin: 0 0 18px;
    color: #1f2933;
    font-size: 40px;
    line-height: 1.1;
    font-family: Inter, Arial, sans-serif !important;
    font-weight: 600 !important;
    text-transform: none;
}

/* Табы  */

.vacancy-workplace-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding-bottom: 0;
}

.vacancy-workplace-tab {
    min-height: 58px;
    padding: 0 22px;
    border: 1px solid rgba(132, 27, 45, .45);
    border-radius: 12px 12px 0 0;
    background: #fff;
    color: #1f2933;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.vacancy-workplace-tab:hover {
    border-color: #841b2d;
    color: #841b2d;
}

.vacancy-workplace-tab.is-active {
    background: #b32942;
    border-color: #b32942;
    color: #fff;
    box-shadow: 0 14px 28px rgba(132, 27, 45, .18);
}

/* Нижняя галерея */

.vacancy-workplace-gallery {
    display: none;
    grid-template-columns: 1.1fr 1fr;
    gap: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 14px 34px rgba(31, 41, 51, .07);
}

.vacancy-workplace-gallery.is-active {
    display: grid;
}

.vacancy-workplace-gallery__main,
.vacancy-workplace-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #e6e6e6;
}

.vacancy-workplace-gallery__main img,
.vacancy-workplace-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.vacancy-workplace-gallery__main:hover img,
.vacancy-workplace-gallery__item:hover img {
    transform: scale(1.04);
}

.vacancy-workplace-gallery__main {
    min-height: 430px;
}

.vacancy-workplace-gallery__side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.vacancy-workplace-gallery__item {
    min-height: 207px;
}

.vacancy-workplace-gallery__main span,
.vacancy-workplace-gallery__item span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 16px;
    color: #1f2933;
    background: rgba(255, 255, 255, .94);
    border-radius: 9px;
    box-shadow: 0 8px 20px rgba(31, 41, 51, .12);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 850;
}

.vacancy-workplace-gallery__main::after,
.vacancy-workplace-gallery__item::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .28),
        rgba(0, 0, 0, 0)
    );
    pointer-events: none;
}

.vacancy-workplace-gallery__main,
.vacancy-workplace-gallery__item {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: zoom-in;
}

/* Жизнь На Ходу */

.vacancy-life {
    background: #f5f3f1;
}

.vacancy-life-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vacancy-life-card {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(31, 41, 51, .08);
}

.vacancy-life-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.vacancy-life-card:hover img {
    transform: scale(1.04);
}

.vacancy-life-card__label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, .94);
    color: #1f2933;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(31, 41, 51, .12);
}

.microbus-contacts {
    padding: 76px 0 90px;
    background: #f6f6f6;
}

.microbus-contacts__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.microbus-contacts__head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.microbus-contacts__title {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #1f1f1f;
    text-transform: none;
    text-align: center;
}

.microbus-contacts__content {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.microbus-contacts__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.microbus-contacts__card {
    padding: 22px 22px 20px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(20, 20, 20, 0.05);
    border: 1px solid rgba(179, 19, 43, 0.06);
}

.microbus-contacts__label {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    color: #8a8a8a;
    text-transform: uppercase;
}

.microbus-contacts__value {
    font-size: 18px;
    line-height: 1.5;
    color: #1f1f1f;
    font-weight: 500;
}

.microbus-contacts__value a {
    color: #1f1f1f;
    text-decoration: none;
}

.microbus-contacts__value a:hover {
    color: #b3132b;
}

.microbus-contacts__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 16px;
    background: #b3132b;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(179, 19, 43, 0.25);
}

.microbus-contacts__btn:hover {
    background: #980f24;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(179, 19, 43, 0.35);
}

.microbus-contacts__map {
    min-height: 420px;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(20, 20, 20, 0.05);
    border: 1px solid rgba(179, 19, 43, 0.06);
}

.microbus-contacts__map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Финальный CTA */

.career-start {
    padding: 90px 0;
    background: #f7f7f7;
}

.career-start .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.career-start__inner {
    min-height: 560px;
    overflow: hidden;
    border-radius: 32px;
    background-image: url("/local/templates/nahodu/images/career-start2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 24px 60px rgba(31, 41, 51, .12);
}

.career-start__content {
    max-width: 620px;
    padding: 80px 0 80px 80px;
}

.career-start__content h2 {
    margin: 0;
    color: #1f2933;
    font-size: 36px;
    line-height: 1.05;
    font-family: Inter, Arial, sans-serif !important;
    font-weight: 900 !important;
    text-transform: none;
}

.career-start__content h2 strong {
    color: #841b2d;
}

.career-start__line {
    width: 90px;
    height: 4px;
    margin: 38px 0 46px;
    background: #841b2d;
    border-radius: 20px;
}

.career-start__content p {
    margin: 0 0 54px;
    color: #1f2933;
    font-size: 22px;
    line-height: 1.38;
    font-weight: 400;
}

.career-start__content p strong {
    color: #841b2d;
    font-weight: 600;
}

.career-start__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 320px;
    height: 70px;
    color: #fff;
    background: linear-gradient(135deg, #c31337 0%, #841b2d 100%);
    border-radius: 18px;
    box-shadow: 0 24px 44px rgba(132, 27, 45, .28);
    text-decoration: none;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .04em;
    transition: transform .25s ease, box-shadow .25s ease;
}

.career-start__btn span {
    font-size: 46px;
    line-height: 1;
}

.career-start__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 54px rgba(132, 27, 45, .36);
}

.vacancy-popup__close {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    color: #ffffff;
    background: #a8122a;
    border-radius: 50%;

    font-size: 26px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
}

.vacancy-popup__close:hover {
    color: #ffffff;
    background: #8f0f23;
    text-decoration: none;
}

.jq-selectbox.has_error .jq-selectbox__select {
    border-color: #a8122a;
}

@media (max-width: 1199px) {
    .vacancy-card__image {
        width: 36%;
    }

    .vacancy-card__content {
        margin-left: 29%;
        padding: 42px 38px 34px 64px;
    }

    .vacancy-card h3 {
        font-size: 28px;
    }

    .vacancy-card p {
        font-size: 16px;
    }

    .vacancy-stories__head h2 {
        font-size: 48px;
    }

    .vacancy-stories__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

     .vacancy-section-head h2 {
        font-size: 38px;
    }

    .vacancy-service-card img {
        height: 220px;
    }

    .vacancy-workplace-gallery {
        grid-template-columns: 1fr;
    }

    .vacancy-workplace-gallery__main {
        min-height: 380px;
    }

    .vacancy-workplace-gallery__item {
        min-height: 190px;
    }

    .career-start__content {
        max-width: 520px;
        padding: 70px 0 70px 50px;
    }

    .career-start__content h2 {
        font-size: 56px;
    }

    .career-start__content p {
        font-size: 26px;
    }

    .career-start__btn {
        width: 320px;
        height: 90px;
        font-size: 36px;
    }


}

@media (max-width: 991px) {
    .vacancy-hero {
        padding: 0;
    }

    .vacancy-hero__content {
        max-width: 470px;
        padding: 12зч0;
        transform: none;
    }

    .vacancy-hero__numbers {
        gap: 22px;
        margin-bottom: 28px;
        padding-bottom: 18px;
    }

    .vacancy-hero__number {
        min-width: 86px;
    }

    .vacancy-hero__number strong {
        font-size: 28px;
    }

    .vacancy-hero__number span {
        font-size: 13px;
    }

    .vacancy-hero__title {
        max-width: 440px;
        margin: 0 0 34px;
        font-size: 40px;
        line-height: 1.12;
        letter-spacing: -0.035em;
    }

    .vacancy-hero__benefits {
        display: none;
    }

    .vacancy-hero__btn {
        height: 56px;
        margin-top: 0;
        padding: 0 32px;
        font-size: 16px;
    }

    .vacancy-mobile-benefits {
        display: block;
        padding: 0 0 36px;
        background: #fff;
    }

    .vacancy-mobile-benefits__grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .vacancy-mobile-benefits__item {
        min-height: 78px;
        padding: 18px 16px;
        border-radius: 14px;
        background: #f5f3f1;
        color: #1f2933;
        font-size: 15px;
        line-height: 1.35;
        font-weight: 700;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    } 

    .vacancy-cards {
        grid-template-columns: 1fr;
    }

    .vacancy-directions__head h2 {
        font-size: 42px;

        font-style: normal !important;
        text-transform: none;

        font-weight: 700;
        letter-spacing: -0.02em;

        font-family: "Inter", sans-serif;
    }

    .vacancy-employer {
        padding: 96px 0 80px;
    }

    .vacancy-employer__intro {
        margin-bottom: 72px;
    }

    .vacancy-employer__text {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vacancy-employer__divider {
        display: none;
    }

    .benefit-row,
    .benefit-row--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .benefit-row__image {
        height: 420px;
    }

    .benefit-row__content,
    .benefit-row--reverse .benefit-row__content {
        max-width: 100%;
        margin-left: 0;
    }

    .benefit-row__content h3 {
        font-size: 38px;
    }

    .benefit-row__content p {
        font-size: 18px;
    }

     .vacancy-stories {
        padding: 90px 0;
    }

    .vacancy-stories__main {
        grid-template-columns: 1fr;
    }

    .vacancy-stories__photo {
        min-height: 360px;
        clip-path: none;
    }

    .vacancy-stories__content {
        padding: 42px 36px 44px;
    }

    .vacancy-stories__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vacancy-services-grid,
    .vacancy-life-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vacancy-section-head h2 {
        font-size: 38px;
    }

     .vacancy-places {
        padding: 70px 0;
    }

     .vacancy-workplace-tabs {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 14px;
        scroll-snap-type: x mandatory;
    }

    .vacancy-workplace-tab {
        flex: 0 0 auto;
        min-width: 260px;
        scroll-snap-align: start;
    }

    .vacancy-workplace-gallery__side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .career-start__inner {
        min-height: 520px;
    }

    .career-start__content {
        max-width: 450px;
        padding: 50px 0 50px 40px;
    }

    .career-start__content h2 {
        font-size: 44px;
    }

    .career-start__content p {
        font-size: 22px;
    }

    .career-start__btn {
        width: 280px;
        height: 80px;
        font-size: 32px;
    }

    .microbus-contacts {
        padding: 60px 0 72px;
    }

    .microbus-contacts__content {
        grid-template-columns: 1fr;
    }

    .microbus-contacts__map {
        min-height: 360px;
    }


}

@media (max-width: 767px) {
      .vacancy-hero {
        min-height: 500px;
        margin: 14px 0 22px;
        padding: 12px 18px 28px;
        border-radius: 18px;
        background-image: url("/local/templates/nahodu/images/vacancy-banner-mobile.png");
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
        align-items: flex-start;
        position: relative;
     }

    .vacancy-hero__content {
        position: relative;
        z-index: 1;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 470px;
        padding: 18px 10px 12px;
    }

    .vacancy-hero__numbers {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        margin: 0 0 22px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(31, 41, 51, .12);
    }

    .vacancy-hero__number {
        min-width: 0;
        text-align: center;
    }

    .vacancy-hero__number strong {
        margin-bottom: 4px;
        font-size: 25px;
        line-height: 1;
    }

    .vacancy-hero__number span {
        font-size: 11px;
        line-height: 1.2;
    }

    .vacancy-hero__number:not(:last-child)::after {
        right: -4px;
        top: 2px;
        height: 36px;
    }

    .vacancy-hero__title {
        max-width: 100%;
        margin: 0 0 22px;
        font-size: 28px;
        line-height: 1.3;
        letter-spacing: -0.035em;
    }

    .vacancy-hero__benefits {
        display: none;
    }

    .vacancy-hero__btn {
        width: 100%;
        max-width: 320px;
        height: 54px;
        border-radius: 14px;
        font-size: 17px;
        margin-top: auto;
    }

    .vacancy-mobile-benefits {
        display: block;
        padding: 0 0 42px;
        background: #f7f7f7;
    }

    .vacancy-mobile-benefits__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .vacancy-mobile-benefits__item {
        position: relative;
        min-height: 74px;
        padding: 16px 14px 16px 38px;
        border-radius: 16px;
        background: #ffffff;
        color: #1f2933;
        font-size: 15px;
        line-height: 1.3;
        font-weight: 700;
        box-shadow: 0 10px 26px rgba(31, 41, 51, .06);
        border: 1px solid rgba(31, 41, 51, .07);
    }

    .vacancy-mobile-benefits__item::before {
        content: "";
        position: absolute;
        left: 16px;
        top: 20px;
        width: 8px;
        height: 14px;
        border-right: 2px solid #a8122a;
        border-bottom: 2px solid #a8122a;
        transform: rotate(45deg);
    }

    .vacancy-directions {
        padding: 18px 0 34px;
    }

    .vacancy-directions__head {
        margin-bottom: 24px;
    }

    .vacancy-directions__head h2 {
        max-width: 340px;
        margin: 0 auto;
        font-size: 28px;
        line-height: 1.14;
        letter-spacing: -0.035em;
        text-align: center;
    }

    .vacancy-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vacancy-card {
        min-height: auto;
        border-radius: 18px;
        overflow: hidden;
    }

    .vacancy-card__image {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: 220px;
        clip-path: none;
    }

    .vacancy-card__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .vacancy-card__content {
        min-height: auto;
        margin-left: 0;
        padding: 22px 22px 24px;
        clip-path: none;
    }

    .vacancy-card h3 {
        min-height: auto;
        margin: 0 0 14px;
        font-size: 20px;
        line-height: 1.12;
    }

    .vacancy-card p {
        max-width: none;
        margin: 0 0 22px;
        font-size: 16px;
        line-height: 1.5; 
    }

    .vacancy-employer {
        padding: 48px 0 44px;
    }

    .vacancy-employer__intro {
        margin-bottom: 26px;
    }

    .vacancy-employer__logo {
        margin-bottom: 22px;
    }

    .vacancy-employer__text {
        gap: 24px;
    }

    .vacancy-employer__col p {
        margin: 0;
        font-size: 18px;
    }

    .vacancy-employer__scroll {
        margin: 24px 0 34px;
    }

    .vacancy-employer__benefits {
        gap: 46px;
    }

    .benefit-row,
    .benefit-row--reverse {
        display: flex;
        flex-direction: column;
        gap: 22px; 
    }

    .benefit-row--reverse .benefit-row__image {
        order: 1;
    }

    .benefit-row--reverse .benefit-row__content {
        order: 2;
    }

    .benefit-row__image {
        width: 100%;
        height: 300px;
        border-radius: 20px;
    }

    .benefit-row__content {
        max-width: 100%;
    }

    .benefit-row__content h3 {
        margin: 0 0 14px;
        font-size: 24px;
        line-height: 1.16;
        letter-spacing: -0.035em;
    }

    .benefit-row__content p {
        margin: 0;
        font-size: 17px;
        line-height: 1.55;
    }

    .vacancy-stories {
        padding: 54px 0 42px;
    }

    .vacancy-stories__head {
        margin: 0 auto 28px;
    }

    .vacancy-stories__head h2 {
        margin: 0 0 18px;
        font-size: 28px;
        line-height: 1.12;
        letter-spacing: -0.035em;
    }

    .vacancy-stories__head p {
        max-width: 340px;
        font-size: 17px;
        line-height: 1.55;
    }

    .vacancy-stories__main {
        display: block;
        height: auto;
        margin-bottom: 22px;
        border-radius: 18px;
    }

    .vacancy-stories__photo {
        height: 240px;
        min-height: auto;
        clip-path: none;
    }

    .vacancy-stories__photo img {
        object-fit: cover;
    }

    .vacancy-stories__content {
        padding: 24px 22px 26px;
    }

    .vacancy-stories__year {
        margin-bottom: 10px;
        font-size: 11px;
        letter-spacing: .14em;
    }

    .vacancy-stories__content h3 {
        margin: 0 0 14px;
        font-size: 26px;
        line-height: 1.12;
    }

    .vacancy-stories__line {
        width: 56px;
        height: 3px;
        margin-bottom: 18px;
    }

    .vacancy-stories__text {
        margin: 0 0 22px;
        font-size: 17px;
        line-height: 1.5;
    }

    .vacancy-stories__quote {
        padding: 14px 16px;
        font-size: 15px;
        line-height: 1.45;
    }

    .vacancy-stories__arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 120px;
        z-index: 10;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(132, 27, 45, .28);
        border-radius: 50%;
        background: rgba(255, 255, 255, .92);
        color: #841b2d;
        font-size: 34px;
        line-height: 1;
        cursor: pointer;
        transform: translateY(-50%);
        box-shadow: 0 8px 20px rgba(31, 41, 51, .12);
    }

    .vacancy-stories__arrow--prev {
        left: 14px;
        padding-right: 7px;
        padding-bottom: 4px;
    }

    .vacancy-stories__arrow--next {
        right: 14px;
        padding-left: 7px;
        padding-bottom: 4px;
    }

    .vacancy-stories__list {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 0 0 12px;
        scroll-snap-type: x mandatory;
    }

    .vacancy-person {
        flex: 0 0 210px;
        scroll-snap-align: start;
        border-radius: 16px;
    }

    .vacancy-person__photo {
        flex: 0 0 118px;
        height: 118px;
    }

    .vacancy-person__name {
        min-height: auto;
        height: auto;
        padding: 14px 14px 0;
        font-size: 18px;
    }

    .vacancy-person__path {
        min-height: 58px;
        padding: 8px 14px 16px;
        font-size: 15px;
        line-height: 1.35;
    }

    .vacancy-person--active {
        transform: none;
        border: 2px solid #841b2d;
        box-shadow: 0 16px 34px rgba(132, 27, 45, .14);
    }

    .vacancy-final-cta__content {
        margin: 46px auto 0;
    }

    .vacancy-final-cta__content h2 {
        margin: 0 0 18px;
        font-size: 26px;
        line-height: 1.12;
    }

    .vacancy-final-cta__content p {
        margin: 0 0 28px;
        font-size: 18px;
        line-height: 1.35;
    }

    .vacancy-final-cta__button {
        max-width: 320px;
        min-width: 0;
        height: 58px;
        padding: 0 24px;
        border-radius: 16px;
        font-size: 18px;
    }

     /* Рабочее место: мобильная версия */
     .vacancy-places {
         padding: 44px 0 46px;
     }

     .vacancy-places .vacancy-section-head {
         margin-bottom: 28px;
     }

     .vacancy-places .vacancy-section-head h2 {
         max-width: 340px;
         margin: 0 auto 18px;
         font-size: 34px;
         line-height: 1.12;
         letter-spacing: -0.04em;
     }

    .vacancy-places .vacancy-section-head p {
        max-width: 340px;
        margin: 0 auto;
        font-size: 17px;
        line-height: 1.5;
    }

    /* Табы адресов */
    .vacancy-workplace-tabs {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 0 auto 22px;
        max-width: 420px;
    }

    .vacancy-workplace-tab {
        width: 100%;
        min-height: 56px;
        padding: 16px 20px;
        border-radius: 14px;
        font-size: 16px;
        line-height: 1.3;
        text-align: center;
    }

    .vacancy-workplace-tab.is-active {
       background: #a8122a;
       color: #fff;
    }

    /* Галерея: одна линия, свайп по фото */
    .vacancy-workplace-gallery.is-active {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        margin: 0 -16px;
        padding: 0 16px 8px;
        scroll-snap-type: x mandatory;
    }

    .vacancy-workplace-gallery.is-active > .vacancy-workplace-gallery__main,
    .vacancy-workplace-gallery.is-active .vacancy-workplace-gallery__item {
       display: block;
       flex: 0 0 86%;
       width: auto;
       max-width: none;
       height: 260px;
       min-height: 0;
       border-radius: 18px;
       overflow: hidden;
       clip-path: none;
    }

    .vacancy-workplace-gallery.is-active > .vacancy-workplace-gallery__main img,
    .vacancy-workplace-gallery.is-active .vacancy-workplace-gallery__item img {
       display: block;
       width: 100%;
       height: 100%;
       object-fit: cover;
    }

    .vacancy-workplace-gallery__main,
    .vacancy-workplace-gallery__item {
        flex: 0 0 86%;
        height: 260px;
        border-radius: 18px;
        overflow: hidden;
        scroll-snap-align: start;
    }

    .vacancy-workplace-gallery__side {
       display: contents;
       width: auto;
       height: auto;
   }

    .vacancy-workplace-gallery__main img,
    .vacancy-workplace-gallery__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fancybox__button--close,
    .f-button.is-close-btn {
       display: flex !important;
       opacity: 1 !important;
       visibility: visible !important;
       width: 44px !important;
       height: 44px !important;
       background: rgba(0,0,0,.55) !important;
       border-radius: 50% !important;
       top: 16px !important;
       right: 16px !important;
}

     .microbus-contacts {
        padding: 46px 0 56px;
    }

    .microbus-contacts__container {
        padding: 0 16px;
    }

    .microbus-contacts__title {
        margin-bottom: 12px;
        font-size: 26px;
    }

    .microbus-contacts__subtitle {
        font-size: 16px;
    }

    .microbus-contacts__head {
        margin-bottom: 24px;
    }

    .microbus-contacts__card {
        padding: 18px 18px 16px;
        border-radius: 18px;
    }

    .microbus-contacts__value {
        font-size: 16px;
    }

    .microbus-contacts__btn {
        width: 100%;
        min-height: 52px;
        font-size: 16px;
    }

    .microbus-contacts__map {
        min-height: 360px;
        border-radius: 20px;
    }

    .vacancy-life {
        padding: 48px 0 64px;
    }

    .vacancy-life-card__label {
    left: 50%;
    right: auto;
    bottom: 18px;
    width: auto;
    min-width: 130px;
    max-width: calc(100% - 20px);
    padding: 14px 18px;
    transform: translateX(-50%);
    box-sizing: border-box;
    }

    .vacancy-section-head {
        margin-bottom: 32px;
    }

    .vacancy-section-head h2 {
        font-size: 30px;
    }

    .vacancy-section-head p {
        font-size: 16px;
    }

    .vacancy-service-card {
        display: block;
        border-radius: 16px;
    }

    .vacancy-service-card img {
        height: 220px;
        min-height: auto;
    }

    .vacancy-service-card__content {
        padding: 20px;
    }

    .vacancy-service-card__content h3 {
        font-size: 19px;
    }

    .career-start {
       padding: 42px 0 56px;
    }

    .career-start__inner {
       min-height: 520px;
       border-radius: 22px;
       background-position: center right;
       position: relative;
       overflow: hidden;
    }

    .career-start__inner::before {
       content: "";
       position: absolute;
       inset: 0;
       z-index: 1;
       background: linear-gradient(
           180deg,
             rgba(255,255,255,0.88) 0%,
             rgba(255,255,255,0.72) 35%,
             rgba(255,255,255,0.25) 60%,
             rgba(255,255,255,0) 80%
       );
    }

    .career-start__content {
       padding: 44px 24px 34px;
       display: flex;
       flex-direction: column;
       min-height: 520px;
       position: relative;
       z-index: 2;
    }

    .career-start__content h2 {
       font-size: 28px;
       line-height: 1.12;
    }

    .career-start__content p {
       font-size: 19px;
       line-height: 1.45;
       margin-bottom: 28px;
    }

    .career-start__line {
        margin: 20px 0;
    }

    .career-start__btn {
    width: 100%;
    max-width: 300px;
    height: 62px;
    font-size: 20px;
    border-radius: 18px;
    margin-top: auto;
}

}


/* End */
/* /rabota/style.css?178238498744129 */
