

/* Start:/local/templates/nlmk_career/css/vacancy-map/vacancy-map.css?17502334066789*/
.vm_container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 188px 156px 120px 156px;
    --design-black-100: #000000;
}

.vm_body {
    margin-top: 80px;
    display: grid;
    grid-row-gap: 120px;
}

.vm_container h1 {
    font-size: 64px;
    line-height: 115%;
    color: var(--design-black-100);
}

.vm_container h3 {
    font-size: 40px;
    line-height: 118%;
    color: var(--design-black-100);
}

.vm_directions_title,
.vm_areas_title,
.vm_offices_title {
    margin-bottom: 40px;
}

.vm_by_directions_title {
    margin-bottom: 48px;
}

.vm_container .professions__row {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 24px;
    margin: 0;
}

.vm_container .professions__item {
    border: 1px solid var(--white-hover);
}

.vm_container .professions__item-title {
    color: var(--black-color);
    line-height: 130%;
}

.vm_container .professions__text-wrapper {
    top: 32px;
    left: 32px;
}

.vm_container .professions__img-wrapper {
    right: 16px;
    height: 220px;
}

.vm_container .professions__img-wrapper img {
    max-height: calc(100% - 16px);
}

.vm_areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 48px;
    grid-row-gap: 0;
}

.vm_area_link {
    cursor: pointer;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--white-hover);
}

.vm_area_name {
    font-size: 24px;
    line-height: 130%;
    color: var(--black-text);
    margin-top: 2px;
}

.vm_area_count {
    display: flex;
    align-items: center;
}

.vm_area_count span {
    font-size: 18px;
    line-height: 140%;
    color: var(--secondary-color);
    margin-top: 6px;
}

.vm_area_link:hover .vm_area_name,
.vm_area_link:hover .vm_area_count span {
    color: var(--primary-color);
}

.vm_area_arrow_icon {
    display: none;
    width: 24px;
    height: 24px;
    stroke: var(--grey-color);
    fill: none;
    transform: rotate(-90deg);
}

.vm_container .btn-primary-outline-less {
    display: none;
    width: 100%;
    padding: 10px 18px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 140%;
}

.vm_offices {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.vm_office_link {
    cursor: pointer;
    padding: 4px 16px;
    border-radius: 4px;
    border: 1px solid var(--white-hover);
}

.vm_office_link:hover {
    background-color: var(--muted-color);
}

.vm_office_name {
    font-size: 18px;
    line-height: 140%;
    color: var(--black-text);
}

.vm_by_directions {
    display: grid;
    grid-row-gap: 48px;
}

.vm_by_direction {
    padding-bottom: 48px;
    border-bottom: 1px solid var(--white-hover);
}

.vm_by_direction:last-child {
    padding-bottom: 0;
    border-bottom: unset;
}

.vm_by_direction_title {
    font-size: 28px;
    line-height: 120%;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.vm_by_direction_specialisations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 48px;
    grid-row-gap: 40px;
}

.vm_by_specialisation_link {
    font-size: 24px;
    line-height: 130%;
    color: var(--black-text);
}

.vm_by_specialisation_link:hover {
    color: var(--primary-color);
}

.vm_by_specialisation_count {
    margin-left: 4px;
    font-size: 24px;
    line-height: 130%;
    color: var(--secondary-color);
}

@media (max-width: 1600px) {
    .vm_container .professions__row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1240px) {
    .vm_container {
        padding: 105px 40px 120px 40px;
    }

    .vm_container .professions__item-count {
        font-size: 18px;
    }

    .vm_areas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1180px) {
    .vm_container .professions__img-wrapper {
        height: 220px !important;
    }
}

@media (max-width: 1024px) {
    .vm_by_direction_specialisations {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .vm_container .professions__row {
        grid-template-columns: repeat(1, 1fr);
    }

    .vm_container .professions__item {
        border: unset;
    }

    .vm_container .professions__item-inner {
        min-height: 130px;
        height: auto;
        padding: 8px 0 26px 0;
    }

    .vm_container .professions__text-wrapper {
        flex: 0 1 30%;
        position: static;
    }

    .vm_container .professions__item-title {
        letter-spacing: 0.02em;
    }

    .vm_container .professions__img-wrapper {
        right: 10px;
        height: 130px !important;
    }

    .vm_container .professions__img-wrapper img {
        max-height: 100%;
    }
}

@media (max-width: 768px) {
    .vm_container {
        padding: 118px 24px 80px 24px;
    }

    .vm_container h1 {
        font-size: 40px;
        line-height: 120%;
    }

    .vm_container h3 {
        font-size: 32px;
        line-height: 120%;
    }

    .vm_offices_title,
    .vm_directions_title {
        margin-bottom: 32px;
    }

    .vm_areas_title {
        margin-bottom: 16px;
    }

    .vm_offices_title {
        margin-bottom: 24px;
    }

    .vm_body {
        margin-top: 64px;
        grid-row-gap: 56px;
    }

    .vm_container .professions__text-wrapper {
        justify-content: flex-start;
        padding-bottom: 0;
    }

    .vm_container .professions__item-title {
        max-width: unset;
    }

    .vm_container .professions__item-count {
        font-size: 16px;
    }

    .vm_areas {
        grid-template-columns: repeat(1, 1fr);
        max-height: 400px;
        overflow: hidden;
    }

    .vm_areas.open {
        max-height: unset;
    }

    .vm_container .btn-primary-outline-less {
        display: block;
    }

    .vm_container .btn-primary-outline-less.hidden {
        display: none;
    }

    .vm_area_link {
        padding: 8px 0;
    }

    .vm_area_name {
        font-size: 18px;
        line-height: 140%;
    }

    .vm_area_count span {
        font-size: 16px;
        line-height: 130%;
        margin-top: 5px;
    }

    .vm_area_arrow_icon {
        display: block;
    }

    .vm_office_link {
        padding: 4px 10px;
    }

    .vm_office_name {
        font-size: 14px;
        line-height: 140%;
    }

    .vm_by_directions {
        grid-row-gap: 32px;
    }

    .vm_by_direction {
        padding-bottom: 32px;
    }

    .vm_by_direction_specialisations {
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 32px;
    }

    .vm_by_direction_title {
        font-size: 24px;
        line-height: 130%;
        margin-bottom: 24px;
    }

    .vm_by_specialisation_link {
        font-size: 18px;
        line-height: 140%;
    }

    .vm_by_specialisation_count {
        font-size: 18px;
        line-height: 140%;
    }
}
/* End */


/* Start:/local/templates/nlmk_career/css/all-vacancies/all-vacancies-professions.css?17502334064277*/
.all-vacancies {
  position: relative;
}
.all-vacancies::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--muted-color);
  z-index: -1;
}

.professions__item-title {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: var(--black-text);
  margin-bottom: 4px;
}

.inner-wrapper-sticky {
  transform: translate(0, 0); /* For browsers don't support translate3d. */
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

.professions__wrapper {
  will-change: min-height;
}

.professions__item:hover .professions__img-wrapper {
  bottom: 7px;
}
.professions__item:hover .professions__item-inner::before {
  height: 11px;
}

.professions__item-inner {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  display: flex;
  height: 220px;
  position: relative;
}
.professions__item-inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  background-color: var(--success-color);
  z-index: 1;
  transition: var(--transition-main);
}

.professions__item-count {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: var(--secondary-color);
}

.professions__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 40px;
  margin-top: 45px;
}

.all-vacancies__row {
  display: flex;
}

.all-vacancies__professions {
  flex: 0 1 50%;
  padding-right: 93px;
  padding-bottom: 130px;
}

.all-vacancies__left {
  height: 100%;
}

.professions__text-wrapper {
  flex: 0 1 50%;
  position: relative;
  top: 30px;
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .professions__img-wrapper {
    height: 114px !important;
  }
}
.professions__img-wrapper {
  position: absolute;
  height: 222px;
  width: 100%;
  bottom: 2px;
  right: 0;
  z-index: -1;
  transition: var(--transition-main);
}
.professions__img-wrapper img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: fit-content;
  object-fit: contain;
  max-height: 100%;
}

.all-vacancies__favourite-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary-color);
  margin-right: 8px;
}
.all-vacancies__favourite-icon mask {
  fill: black;
}

@media (min-width: 1485px) and (max-width: 1700px) {
  .professions__img-wrapper {
    right: -30px;
  }
}

@media (max-width: 1485px) {
  .professions__img-wrapper {
    height: 160px;
  }
}

@media (min-width: 1181px) and (max-width: 1300px) {
  .professions__img-wrapper {
    right: -10px;
  }
}

@media (max-width: 1240px) {
  .professions__img-wrapper {
    height: 160px;
  }

  .all-vacancies__professions {
    padding-right: 40px;
  }

  .all-vacancies__search {
    padding-left: 40px;
  }

  .professions__item-count {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .professions__row {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 24px;
  }
}
@media (max-width: 768px) {
  .all-vacancies__row {
    flex-direction: column;
  }

  .all-vacancies::before {
    display: none;
  }

  .all-vacancies__professions {
    padding-right: 0;
  }

  .all-vacancies__search {
    padding-left: 0 !important;
  }

  .professions__img-wrapper {
    width: 130px;
    height: 130px;
    position: relative;
    margin-left: auto;
    z-index: 0;
  }

  .all-vacancies__title {
    font-size: 40px !important;
    position: relative;
  }

  .professions__row {
    margin-top: 40px;
  }

  .professions__item-title {
    max-width: 232px;
  }

  .professions__img-wrapper {
    margin-top: auto;
    position: absolute;
    right: 0;
  }

  .professions__text-wrapper {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 25px;
    top: 0;
  }

  .professions__item-inner {
    height: 100%;
  }

  .professions__item {
    min-height: 130px;
  }

  .all-vacancies__professions {
    position: relative;
  }
  .all-vacancies__professions::before {
    content: "";
    position: absolute;
    left: -16px;
    bottom: 0;
    background-color: #F1F4F8;
    width: calc(100% + 32px);
    height: calc(100% + 104px);
  }

  .all-vacancies__professions {
    padding-bottom: 44px;
    margin-bottom: 40px;
  }
}
/* End */
/* /local/templates/nlmk_career/css/vacancy-map/vacancy-map.css?17502334066789 */
/* /local/templates/nlmk_career/css/all-vacancies/all-vacancies-professions.css?17502334064277 */
