.vacancy-without-form-main-wrapper, .vacancies-filter__title, .filter-item__search {
	font-family: 'Factor A', sans-serif;
}

.vacancies-new__container {
	width: 100%;
	max-width: 1292px;
	padding-right: 16px;
	padding-left: 16px;
	margin: 0 auto;
}

.hero-vacancy__logo {
	display: none;
	padding: 0 16px;
	margin: 32px 0;
}

.hero-vacancy {
	background-color: transparent;
}

.hero-vacancy__big-container {
	position: relative;
	display: flex;
	overflow: hidden;
	justify-content: space-between;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.hero-vacancy__container {
	display: flex;
	padding-top: 86px;
	padding-bottom: 32px;
}

.hero-vacancy__text-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	width: 100%;
}

.hero-vacancy__title {
	position: relative;
	display: inline-block;
	color: #121217;
	font-size: 34px;
	font-weight: 700;
	line-height: 41px;
	text-transform: none;
	padding: 0;
	margin: 0;
}

.dynamic-title:after {
	position: absolute;
	z-index: 1;
	bottom: 10px;
	display: none;
	width: 47px;
	height: 26px;
	margin-left: 10px;
	content: "";
	background: url(./images/title-arrows.svg) no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.hero-vacancy__descr {
	color: #121217;
	font-size: 16px;
	font-weight: 300;
	line-height: 21px;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
}

.hero-vacancy__search-container {
	position: relative;
	padding-bottom: 24px;
}

.nmp-hero__search-block {
	position: relative;
	width: 100%;
}

.nmp-hero__search-row {
	display: flex;
	align-items: center;
	gap: 16px;
}

.nmp-hero__search {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	height: 48px;
	gap: 8px;
	background: #ffffff;
	border: 1px solid #F2F2F2;
	border-radius: 16px;
	padding: 16px;
}

.nmp-hero__search-icon {
	flex-shrink: 0;
}

.nmp-hero__search-field {
	position: relative;
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
}

.nmp-hero__search-field input {
	width: 100%;
	color: #121217;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	background: none;
	border: 0;
	outline: none;
	padding: 0;
}

.nmp-hero__placeholder {
	position: absolute;
	top: 50%;
	left: 0;
	max-width: 100%;
	color: #9D9D9D;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	white-space: nowrap;
	overflow: hidden;
	transform: translateY(-50%);
	pointer-events: none;
}

.nmp-hero__placeholder::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 14px;
	margin-left: 1px;
	vertical-align: -2px;
	background: #9D9D9D;
	animation: nmp-caret 1s step-end infinite;
}

.nmp-hero__placeholder._typing::after {
	animation: none;
	opacity: 1;
}

.nmp-hero__placeholder:empty::after {
	display: none;
}

@keyframes nmp-caret {
	0%, 49% {
		opacity: 1;
	}
	50%, 100% {
		opacity: 0;
	}
}

.nmp-hero__search-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	height: 48px;
	gap: 8px;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	background: #BD0C1E;
	border: 0;
	border-radius: 16px;
	padding: 16px 24px;
	transition: background-color 0.2s;
}

.nmp-hero__search-submit._disabled {
	background: #9D9D9D;
}

.nmp-hero__search-submit-icon {
	display: none;
}

.nmp-floater__ai-response a {
	display: inline;
	color: #BD0C1E;
	font-style: normal;
	white-space: nowrap;
	margin-left: 6px;
}

.nmp-floater__ai-response a:hover {
	color: #121217;
}

.nmp-floater__ai-response button.close {
	position: absolute;
	top: 12px;
	right: 14px;
	display: flex;
	width: 10px;
	height: 10px;
	color: #9D9D9D;
	background: none;
	border: 0;
	padding: 0;
	z-index: 10;
}

.nmp-hero__search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	color: #9D9D9D;
	background: none;
	border: 0;
	padding: 0;
	transition: transform 0.2s;
}

.nmp-hero__search-btn:hover {
	transform: scale(1.1);
}

.nmp-hero__search-clean svg {
	width: 12px;
	height: 12px;
}

.nmp-hero__search-btn_spinner,
.nmp-floater-search-btn_spinner {
	display: none;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(18, 18, 23, 0.3);
	border-top-color: #121217;
	border-radius: 50%;
	animation: nmp-spin 1s linear infinite;
	box-sizing: border-box;
	margin: 0 4px;
}

@keyframes nmp-spin {
	to {
		transform: rotate(360deg);
	}
}

.nmp-hero__search._disabled input,
.nmp-floater__inner._disabled input {
	pointer-events: none;
}

.nmp-hero__search._disabled .nmp-hero__search-btn,
.nmp-floater__inner._disabled button {
	display: none;
}

.nmp-hero__search._disabled .nmp-hero__search-btn_spinner,
.nmp-floater__inner._disabled .nmp-floater-search-btn_spinner {
	display: block;
}

.nmp-floater {
	position: fixed;
	bottom: 40px;
	left: 50%;
	width: min(calc(100vw - 48px), 648px);
	z-index: 10000;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
	transition: opacity 0.3s cubic-bezier(.34, 1.56, .64, 1),
	transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
}

.nmp-floater--hidden {
	opacity: 0;
	transform: translateX(-50%) translateY(16px);
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.3s cubic-bezier(.34, 1.56, .64, 1),
	transform 0.3s cubic-bezier(.34, 1.56, .64, 1),
	visibility 0s linear 0.3s;
}

.nmp-floater__ai-response {
	position: relative;
	color: #121217;
	font-size: 16px;
	line-height: 24px;
	font-style: italic;
	background: #FFFFFF;
	border: 1px solid #F2F2F2;
	border-radius: 16px;
	padding: 16px 44px 16px 20px;
	margin-bottom: 40px;
	box-shadow: 0 0 8px 0 rgba(157, 157, 157, 0.2);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease-in-out;
}

.nmp-floater__ai-response._show {
	opacity: 1;
	pointer-events: auto;
}

.nmp-floater__inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	height: 48px;
	border-radius: 16px;
	background: #FFFFFF;
	padding: 0 8px 0 18px;
	box-shadow: 0 0 8px 0 rgba(157, 157, 157, 0.2);
}

.nmp-floater__inner::before {
	content: '';
	position: absolute;
	inset: -24px;
	border-radius: 16px;
	background: rgba(208, 208, 208, 0.65);
	backdrop-filter: blur(3px);
	pointer-events: none;
	z-index: -1;
}

.nmp-floater__inner input {
	flex: 1;
	min-width: 0;
	color: #121217;
	font-size: 14px;
	line-height: 16px;
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
}

.nmp-floater__inner input::placeholder {
	color: #9D9D9D;
}

.nmp-floater__inner .nmp-floater-search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	color: #121217;
	background: transparent;
	border: 0;
	border-radius: 50%;
	padding: 0;
	transition: transform 0.2s;
}

.nmp-floater__inner .nmp-floater-search-btn:hover {
	transform: scale(1.1);
}

.nmp-floater__inner .nmp-floater-search-btn svg {
	width: 14px;
	height: 14px;
}

.nmp-floater__inner .nmp-floater-search-clean svg {
	width: 12px;
	height: 12px;
}

.new-vacancies__divider {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 8px;
	list-style: none;
	color: #9D9D9D;
	font-size: 16px;
	font-weight: 400;
	line-height: 21px;
	text-align: center;
	padding: 40px 0;
	margin: 0;
}

.new-vacancies__divider::before,
.new-vacancies__divider::after {
	content: "";
	flex: 1 1 0;
	min-width: 24px;
	height: 1px;
	background: #9D9D9D;
}

div.new-vacancies {
	position: relative;
	font-family: 'Factor A', sans-serif;
	z-index: 10;
	background-color: #F2F2F2;
}

.new-vacancies:before {
	position: absolute;
	top: 0;
	left: -46vw;
	display: none;
	width: 50vw;
	height: 100%;
	content: "";
	background: #F2F2F2;
}

.new-vacancies:after {
	position: absolute;
	z-index: 1;
	top: 0;
	right: -45vw;
	width: 50vw;
	height: 100%;
	content: "";
	background: #F2F2F2;
}

.new-vacancies__container {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 24px;
	margin-left: auto;
	margin-right: auto;
}

.new-vacancies-container {
	position: sticky;
	z-index: 9999;
	top: 80px;
	box-sizing: border-box;
	width: var(--filter-col, 100%);
	height: fit-content;
	padding: 24px;
	border: 1px solid #F2F2F2;
	border-radius: 16px;
	background-color: #ffffff;
}

.new-vacancies-container.fixed {
	position: fixed;
	z-index: 900;
	top: 80px;
	right: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 7px;
	background: white;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.new-vacancies__filter-wrap {
	--filter-col: 380px;
	flex: 0 0 var(--filter-col);
	max-width: var(--filter-col);
	height: 100%;
}

.new-vacancies__filter {
	position: static;
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 24px;
}

.new-vacancies__filter.fixed {
	position: sticky;
	top: 100px;
}

.new-vacancies__filter-title {
	color: #121217;
	font-size: 24px;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: -0.96px;
	margin-bottom: 0;
}

.new-vacancies__content {
	flex: 1 1 0;
	min-width: 0;
	padding-left: 24px;
}

.new-vacancies__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	min-height: 48px;
	margin-bottom: 20px;
}

.new-vacancies__count {
	color: #121217;
	font-size: 16px;
	font-weight: 400;
	line-height: 21px;
	white-space: nowrap;
}

.new-vacancies__toolbar .vacancy-sort {
	width: auto;
}

.new-vacancies__toolbar .vacancies-sort__menus-wrapper {
	position: static;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	width: auto;
	gap: 8px;
	padding: 0;
	transform: none;
	opacity: 1;
	border-radius: 0;
	background: none;
	box-shadow: none;
}

.new-vacancies__toolbar .vacancies-sort__menu {
	position: relative;
	align-items: stretch;
	width: auto;
	max-width: none;
}

.new-vacancies__toolbar .vacancies-sort__menu .vacancies-sort__title {
	width: max-content;
	height: 48px;
	font-size: 16px;
	line-height: 100%;
	white-space: nowrap;
	gap: 8px;
	border: solid 1px #F2F2F2;
	border-radius: 16px;
	padding: 16px;
	margin: 0;
	background-color: #ffffff;
}

.new-vacancies__toolbar .vacancies-sort__list-wrap {
	position: absolute;
	z-index: 9999;
	top: 56px;
	right: 0;
	display: block;
	width: max-content;
	min-width: 200px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	border-radius: 16px;
	background-color: #ffffff;
	box-shadow: 0 5px 10px 0 #0000000D;
	transition: max-height 0.3s, opacity 0.2s;
}

.new-vacancies__toolbar .vacancies-sort__list-wrap--opened {
	max-height: 200px;
	opacity: 1;
}

.new-vacancies__toolbar .vacancies-sort__list-wrap .vacancies-filter__list-items {
	width: 100%;
	gap: 0;
	padding: 8px;
	overflow: hidden;
}

.new-vacancies__toolbar .vacancies-sort__btn-filter,
.new-vacancies__toolbar .vacancies-sort__menus-wrapper .vacancies-filter__reset {
	display: none;
}

.vacancies-sort__btn-filter {
	display: none;
}

.vacancies-filter__menus-wrapper,
.vacancies-sort__menus-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	pointer-events: auto;
}

.vacancies-sort__menus-wrapper .vacancies-filter__reset {
	display: none;
}

.vacancies-filter__title,
.vacancies-sort__title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 48px;
	color: #121217;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	gap: 8px;
	border: solid 1px #F2F2F2;
	border-radius: 16px;
	padding: 16px;
	margin-bottom: 0;
	background-color: #ffffff;
}

.vacancies-filter__title::after,
.vacancies-sort__title::after {
	content: "";
	display: flex;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 1L5 5L1 1' stroke='%23121217' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto;
	transition: transform 0.3s ease;
}

.vacancies-filter__title.vacancies-filter__title--active.vacancies-filter__title::after,
.vacancies-sort__title.vacancies-sort__title--active.vacancies-sort__title::after {
	transform: rotate(180deg);
}

.vacancies-filter__menu,
.vacancies-sort__menu {
	width: 100%;
	transition: max-height 0.5s ease;
}

.vacancies-filter__menu.vacancies-filter__menu--active,
.vacancies-sort__menu.vacancies-sort__menu--active {
	max-height: 100%;
}

.vacancies-filter-transition-enter {
	transform: scaleY(0.8);
	transform-origin: top;
	opacity: 0;
}

.vacancies-filter-transition-enter-active {
	transition: all 0.3s ease;
}

.vacancies-filter-transition-enter-to {
	transform: scaleY(1);
	opacity: 1;
}

.vacancies-filter-transition-leave {
	transform: scaleY(1);
	transform-origin: top;
	opacity: 1;
}

.vacancies-filter-transition-leave-active {
	transition: all 0.2s ease;
}

.vacancies-filter-transition-leave-to {
	transform: scaleY(0.8);
	opacity: 0;
}

.vacancies-sort__counter {
	transition: transform 0.3s ease;
	transform: scale(0);
}

.vacancies-filter__title .vacancies-filter__counter,
.vacancies-sort__title .vacancies-sort__counter {
	font-size: 12px;
	line-height: normal;
	position: static;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	padding: 0.5px 0 0 0.5px;
	transition: transform 0.3s ease;
	transform: scale(1);
	text-align: center;
	color: #ffffff;
	border-radius: 50px;
	background: #BD0C1E;
}

.vacancies-filter__counter--active,
.vacancies-sort__counter--active {
	transform: scale(1);
}

.vacancies-filter__recommend--active,
.vacancies-sort__recommend--active {
	font-weight: bold;
	background-color: #f5f5f5;
}

.vacancies-filter__list .checkbox,
.vacancies-sort__list .radio {
	position: relative;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
}

.vacancies-filter__list .checkbox input[type="checkbox"],
.vacancies-sort__list .radio input[type="radio"] {
	position: absolute;
	margin: 0;
	opacity: 0.01;
}

.vacancies-filter__list .checkbox input[type="checkbox"]:checked + label.vacancies-filter__item::after,
.vacancies-sort__list .radio input[type="radio"]:checked + label.vacancies-sort__item::after {
	border: none;
	background-color: #BD0C1E;
}

.vacancies-filter__menu--hide-desktop {
	display: none;
}

.vacancies-filter__trigger {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.vacancies-filter__subtitle {
	font-size: 20px;
	line-height: 20px;
	margin: 0;
	color: #1e1e1e;
}

.vacancies-filter__list-wrap,
.vacancies-sort__list-wrap {
	max-height: 0;
	border-radius: 0;
	overflow: hidden;
	pointer-events: auto;
	transition: max-height 0.3s;
}

.vacancies-filter ::-webkit-scrollbar,
.vacancies-sort ::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.vacancies-filter ::-webkit-scrollbar-track,
.vacancies-sort ::-webkit-scrollbar-track {
	border-radius: 4px;
	background: #f5f5f5;
}

.vacancies-filter ::-webkit-scrollbar-thumb,
.vacancies-sort ::-webkit-scrollbar-thumb {
	border: 2px solid #f5f5f5;
	border-radius: 4px;
	background-color: #ccc;
}

.vacancies-filter ::-webkit-scrollbar-thumb:hover,
.vacancies-sort ::-webkit-scrollbar-thumb:hover {
	background-color: #aaa;
}

.vacancies-filter__list {
	display: block;
	width: 100%;
	margin: 0;
}

.vacancies-filter__list .vacancies-filter__item,
.vacancies-sort__list .vacancies-sort__item {
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 32px;
	margin: 0;
	gap: 10px;
	padding: 8px 8px 8px 16px;
	cursor: pointer;
	color: #121217;
}

.vacancies-filter__list .vacancies-filter__item h3,
.vacancies-sort__list .vacancies-sort__item h3 {
	font-size: 16px;
	font-weight: 300;
	line-height: 100%;
	margin-bottom: 0;
}

.vacancies-filter__list .vacancies-filter__item::after,
.vacancies-sort__list .vacancies-sort__item::after {
	content: "";
	min-width: 16px;
	min-height: 16px;
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.16665L3.83333 6.99998L8.55556 1.33331' stroke='white' stroke-width='1.33565' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center;
	border: 0.67px solid #121217;
	border-radius: 50%;
	padding-left: 0;
	transition: background-color 0.2s;
}

.vacancies-filter__list .checkbox :checked + .vacancies-filter__list .vacancies-filter__item::after {
	border: none;
	background-color: #BD0C1E;
	background-size: 10px;
}

.vacancies-filter__list .vacancies-filter__item:before {
	display: none;
}

.vacancies-filter__item:hover {
	opacity: 1;
}

.vacancies-filter__list-wrap--opened,
.vacancies-sort__list-wrap--opened {
	position: relative;
	max-height: 200px;
}

.vacancies-filter__list-items {
	max-height: 300px;
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 8px;
	overflow-y: auto;
}

.vacancies-filter__list-wrap.vacancies-filter__list-wrap--opened {
	max-height: unset;
}

@media (min-width: 993px) {
	.vacancies-filter__menu .vacancies-filter__list-wrap--opened {
		border: 1px solid #F2F2F2;
		border-radius: 16px;
		padding: 4px 0;
		margin-top: 8px;
		background-color: #ffffff;
	}
}

.vacancies-filter__item--active {
	opacity: 1;
	color: #BD0C1E;
}

.vacancies-filter__item::before {
	display: none;
}

.vacancies-filter__item h3 {
	font-size: 18px;
}

.vacancies-filter__btn {
	position: relative;
	width: 17px;
	height: 17px;
	margin-right: 15px;
	border: none;
	background: none;
}

.vacancies-filter__btn::before,
.vacancies-filter__btn::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	content: "";
	transform: translateY(-50%);
	background: #BD0C1E;
}

.vacancies-filter__trigger--active .vacancies-filter__btn::after {
	display: none;
}

.vacancies-filter__btn::after {
	transform: translateY(-50%) rotate(90deg);
}

.vacancies-filter__cancel {
	position: relative;
	display: none;
	width: 20px;
	height: 20px;
	border: none;
	background: none;
}

.vacancies-filter__cancel::before,
.vacancies-filter__cancel::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 26px;
	height: 2px;
	content: "";
	transform: translate(-50%, -50%);
	border-radius: 15px;
	background: #000000;
}

.vacancies-filter__cancel::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.vacancies-filter__cancel::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.vacancies-filter__reset {
	width: 100%;
	color: #BD0C1E;
	font-size: 16px;
	font-weight: 400;
	line-height: 21px;
	text-align: left;
	background: none;
	border: none;
	border-top: 1px solid #E5E5E5;
	padding: 24px 0 0 16px;
	margin-top: 24px;
}

.vacancies-filter__reset:hover {
	text-decoration: underline;
}

@media (min-width: 993px) {
	.vacancies-filter__reset--all {
		width: auto;
		color: #9D9D9D;
		font-size: 14px;
		line-height: 16px;
		border-top: 0;
		padding: 0;
		margin-top: 8px;
	}
}

.vacancies-filter__list-wrap .vacancies-filter__reset {
	position: sticky;
	z-index: 2;
	bottom: 0;
	display: none;
	background: #fff;
	padding-bottom: 16px;
}

.company {
	background-image: url(./images/advice-day-background.svg);
	background-repeat: no-repeat;
	background-position: top right;
}

.advice-from-company__logo {
	position: relative;
	left: -24px;
	display: block;
	width: fit-content;
	margin-bottom: 16px;
}

.advice-from-company__title {
	font-size: 18px;
	line-height: 20px;
	position: relative;
	left: -5px;
	color: #C6C6C6;
}

.banner-container {
	position: relative;
	width: 100%;
	margin-top: 60px;
	margin-bottom: 20px;
}

div.banner:hover {
	color: #ffffff;
}

.banner-text {
	display: flex;
	flex-direction: column;
	max-width: 534px;
	gap: 8px;
}

.banner-title {
	font-size: 24px;
}

.banner-info {
	font-size: 16px;
}


.emoji {
	font-style: normal;
}

.emoji {
	font-style: normal;
}

.new-vacancies__btn {
	font-size: 20px;
	line-height: 23px;
	display: none;
	flex-grow: 100;
	margin-top: 20px;
	padding: 10px 80px;
	transition: all 300ms;
	text-decoration: none;
	color: #F2F2F2;
	border: none;
	border-radius: 3px;
	background: #BD0C1E;
}

.new-vacancies__btn:hover {
	color: #F2F2F2;
	background-color: #19202C;
}

.go-to-top {
	display: none;
	justify-content: center;
	width: 100%;
	padding: 20px;
	cursor: pointer;
	background: #36363C;
}

.go-to-top__icon {
	width: 20px;
	height: 10px;
}

.article #block_1 {
	font-weight: 900;
}

.vacancies-filter__menu--opened .vacancies-filter__list-wrap {
	max-height: 2000px;
}

.new-vacancies__items.new-vacancies__main-page {
	justify-content: space-between;
	margin-top: 26px;
	gap: 0;
}

.new-vacancies__items.new-vacancies__main-page .new-vacancies-card {
	flex: 1 1 400px;
	max-width: 400px;
	margin: 0 0 20px;
}

.new-vacancies:after {
	display: none;
}

.new-vacancies__list-wrap {
	width: 100%;
}

@media (min-width: 993px) {
	.new-vacancies__content .new-vacancies__items {
		gap: 24px;
	}
}

.vacancies-filter__list .vacancies-filter__item h3 {
	margin: 0;
}

.new-vacancies-card__content--top-text {
	width: 100%;
	padding-right: 144px;
}

.new-vacancies-card-telegram.new-vacancies__item .new-vacancies-card-telegram-img {
	width: 130px;
}

.job-tags-wrapper {
	position: relative;
	display: flex;
}

.job-tags-wrapper li {
	margin-right: 9px;
}

.job-tag-hint-image {
	display: block;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
}

.job-tag-hint {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	position: absolute;
	z-index: 10;
	width: 235px;
	padding: 10px;
	transition: all 0.3s;
	pointer-events: none;
	opacity: 0;
	color: #27272c;
	border-radius: 5px;
	background: #F2F2F2;
}

.job-tag-hint-image svg path {
	transition: all 0.3s;
}

.dark .job-tag-hint-wrapper svg path {
	fill: #ffffff;
}

.job-tag-hint-wrapper:hover svg path {
	fill: #BD0C1E;
}

.job-tag-hint-wrapper:hover .job-tag-hint {
	pointer-events: auto;
	opacity: 1;
}

.tile_tags {
	width: 100%;
}

.vacancies-new__container .new-vacancies-container.swiper {
	overflow-x: clip !important;
	padding: 24px 16px 16px 16px;
}

.new-vacancies-container.swiper {
	z-index: 9999 !important;
	overflow-x: clip !important;
	overflow-y: visible !important;
}

.vacancies-filter .vacancies-filter-swiper {
	z-index: 9999 !important;
	overflow-x: clip !important;
	overflow-y: visible !important;
}

.vacancy-sort {
	width: 100%;
}

.footer.new_footer {
	position: relative;
	z-index: 100;
}

@media (max-width: 1100px) {
	.banner-title {
		font-size: 22px;
	}

	.banner-info {
		font-size: 14px;
	}
}

.vacancies-filter__title,
.vacancies-sort__title,
.filter-item__search {
	cursor: pointer;
}

.filter-item__search:not([readonly]):focus {
	cursor: auto;
}

[data-filter-bottom-sentinel] {
	position: absolute;
	bottom: 0;
}

@media (min-width: 992px) {
	.new-vacancies__filter--fixed-top,
	.new-vacancies__filter--fixed-bottom {
		position: sticky;
		top: 80px;
		bottom: auto;
		width: var(--filter-col);
	}

	.new-vacancies__filter-wrap {
		height: auto;
		align-self: stretch;
	}

	.new-vacancies-container {
		max-height: calc(100vh - 100px);
		overflow-x: hidden;
		overflow-y: auto;
	}
}

@media (max-width: 1024px) {
	.banner-title {
		font-size: 24px;
	}

	.banner-info {
		font-size: 16px;
	}
}

@media (max-width: 700px) {
	.banner-title {
		font-size: 20px;
	}

	.banner-info {
		font-size: 14px;
	}
}

@media (max-width: 500px) {
	.banner-img {
		display: none;
	}

	.banner-block {
		max-height: 336px;
		padding: 24px 29px 24px 24px;
	}
}

@media (max-width: 1199px) {
	.hero-vacancy__logo {
		display: inline-block;
	}

	.hero-vacancy__container {
		padding-top: 0;
	}

	.new-vacancies-container {
		top: 10px;
	}

	.nmp-floater {
		bottom: 84px;
	}
}

@media (max-width: 992px) {
	.hero-vacancy,
	.new-vacancies__filter-wrap,
	.new-vacancies-container,
	.new-vacancies__filter {
		background-color: #FFFFFF;
	}

	.hero-vacancy__search-container {
		padding-bottom: 8px;
	}

	.vacancies-filter__list-items {
		overflow-y: auto;
	}

	.hero-vacancy__text-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.new-vacancies .new-vacancies-container .new-vacancies__filter.swiper-slide {
		width: 100% !important;
		max-width: 357px;
	}

	.new-vacancies__filter,
	.vacancies-filter__menus-wrapper,
	.vacancies-sort__menus-wrapper {
		flex-direction: row;
		gap: 0;
	}

	.new-vacancies__filter-title {
		display: none;
	}

	.vacancies-filter__menu,
	.vacancies-sort__menu {
		position: relative;
		display: flex;
		align-content: center;
		align-items: center;
		flex-direction: column;
		justify-content: flex-start;
		max-width: fit-content;
		cursor: pointer;
	}

	.vacancies-sort__menus-wrapper .vacancies-sort__menu {
		position: relative;
		display: flex;
		align-content: center;
		align-items: center;
		flex-direction: column;
		justify-content: flex-start;
		cursor: pointer;
	}

	.vacancies-filter__list-wrap {
		position: absolute;
		z-index: 9999;
		top: 40px;
		left: 0;
		transition: transform 0.4s ease, opacity 0.3s ease;
		transform-origin: top;
		opacity: 0;
		border-radius: 16px;
		background-color: #FFFFFF;
		box-shadow: 0 5px 10px 0 #0000000D;
		min-width: 200px;
		overflow-y: auto;
	}

	.vacancies-sort__list-wrap {
		display: flex;
		padding: 0;
		border-radius: 0;
		width: 100%;
		max-height: 0;
	}

	.vacancies-sort__title .vacancies-sort__counter {
		right: 0;
	}

	.vacancies-sort__list-wrap h3 {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		letter-spacing: 0;
		margin-bottom: 0;
	}

	.vacancies-filter__list-wrap--opened {
		opacity: 1;
	}

	.vacancies-sort__menu.vacancies-sort__menu--active {
	}

	.vacancies-sort__list-wrap--opened {
		max-height: 200px;
	}

	.vacancies-sort__list-wrap .vacancies-filter__list-items {
		padding: 16px 0 0 8px;
		flex-shrink: 0;
		width: 100%;
		gap: 16px;
		overflow: hidden;
	}

	.new-vacancies-container {
		top: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 100%;
		min-width: unset;
		width: 100%;
		border-radius: 0;
		padding: 16px;
		transition: transform 0.2s ease;
	}

	.new-vacancies-container.mobile-slider.fixed-adaptive {
		position: fixed;
		z-index: 900;
		top: 80px;
		right: 0;
		left: 0;
		box-sizing: border-box;
		margin: 0 auto;
		padding-top: 15px;
		padding-bottom: 15px;
		border-radius: 7px;
		background: white;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}

	.new-vacancies-container.sticky {
		position: fixed;
		z-index: 9000;
		top: 0;
		right: 0;
		left: 0;
		width: 100%;
		border-left: none;
		border-right: none;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}

	.vacancies-sort__btn-filter {
		display: flex;
		width: 32px;
		height: 32px;
		border: solid 1px #F2F2F2;
		border-radius: 100%;
		background-color: #ffffff;
		background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.565177 0.500013C0.414396 0.499001 0.271006 0.556707 0.164491 0.657949C0.0590472 0.760201 0 0.897888 0 1.04166C0 1.18543 0.0590472 1.32411 0.164491 1.42638C0.270987 1.52762 0.414388 1.58431 0.565177 1.58431H17.4359C17.5856 1.58431 17.729 1.52762 17.8355 1.42638C17.941 1.32412 18.0011 1.18542 18 1.04166C18.0011 0.897896 17.941 0.760219 17.8355 0.657949C17.729 0.55671 17.5856 0.499002 17.4359 0.500013H0.565177Z' fill='%23121217'/%3E%3Cpath d='M2.94695 4.46191C2.79722 4.46191 2.65383 4.51861 2.54731 4.61985C2.44187 4.7221 2.38177 4.85979 2.38283 5.00457C2.38177 5.14833 2.44187 5.28601 2.54731 5.38828C2.65381 5.48951 2.79721 5.54722 2.94695 5.54621H15.0528C15.2026 5.54722 15.346 5.48952 15.4525 5.38828C15.559 5.28602 15.618 5.14834 15.617 5.00457C15.618 4.8598 15.5579 4.72212 15.4525 4.61985C15.346 4.51861 15.2026 4.46191 15.0528 4.46191H2.94695Z' fill='%23121217'/%3E%3Cpath d='M5.32131 8.42386C5.01237 8.4269 4.76458 8.66886 4.76563 8.96549C4.76879 9.25908 5.01553 9.49599 5.32131 9.50003H12.6697C12.9786 9.50105 13.2306 9.26212 13.2338 8.96549C13.2348 8.82172 13.1758 8.68304 13.0693 8.58178C12.9638 8.47952 12.8194 8.42283 12.6696 8.42384L5.32131 8.42386Z' fill='%23121217'/%3E%3C/svg%3E%0A");
		background-repeat: no-repeat;
		background-position: center;
		background-size: auto;
	}

	.vacancies-sort__btn-filter.active {
		border: none;
		background-color: #BD0C1E;
		background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.565177 0.500013C0.414396 0.499001 0.271006 0.556707 0.164491 0.657949C0.0590472 0.760201 0 0.897888 0 1.04166C0 1.18543 0.0590472 1.32411 0.164491 1.42638C0.270987 1.52762 0.414388 1.58431 0.565177 1.58431H17.4359C17.5856 1.58431 17.729 1.52762 17.8355 1.42638C17.941 1.32412 18.0011 1.18542 18 1.04166C18.0011 0.897896 17.941 0.760219 17.8355 0.657949C17.729 0.55671 17.5856 0.499002 17.4359 0.500013H0.565177Z' fill='%23FFFFFF'/%3E%3Cpath d='M2.94695 4.46191C2.79722 4.46191 2.65383 4.51861 2.54731 4.61985C2.44187 4.7221 2.38177 4.85979 2.38283 5.00457C2.38177 5.14833 2.44187 5.28601 2.54731 5.38828C2.65381 5.48951 2.79721 5.54722 2.94695 5.54621H15.0528C15.2026 5.54722 15.346 5.48952 15.4525 5.38828C15.559 5.28602 15.618 5.14834 15.617 5.00457C15.618 4.8598 15.5579 4.72212 15.4525 4.61985C15.346 4.51861 15.2026 4.46191 15.0528 4.46191H2.94695Z' fill='%23FFFFFF'/%3E%3Cpath d='M5.32131 8.42386C5.01237 8.4269 4.76458 8.66886 4.76563 8.96549C4.76879 9.25908 5.01553 9.49599 5.32131 9.50003H12.6697C12.9786 9.50105 13.2306 9.26212 13.2338 8.96549C13.2348 8.82172 13.1758 8.68304 13.0693 8.58178C12.9638 8.47952 12.8194 8.42283 12.6696 8.42384L5.32131 8.42386Z' fill='%23FFFFFF'/%3E%3C/svg%3E%0A");
	}

	.vacancies-sort__btn-filter::after {
		position: absolute;
		top: 0;
		right: 0;
		display: none;
		width: 6px;
		height: 6px;
		content: "";
		border-radius: 100%;
		background-color: #BD0C1E;
	}

	.vacancies-sort__menus-wrapper:has(.vacancies-sort__title--counter) ~ .vacancies-sort__btn-filter::after {
		display: block;
	}

	.vacancies-sort {
		position: relative;
		z-index: 900;
	}

	.vacancies-sort__menus-wrapper {
		position: absolute;
		z-index: 9999;
		top: 40px;
		align-items: flex-start;
		flex-direction: column;
		width: max-content;
		padding: 16px;
		transition: transform 0.2s ease, opacity 0.2s ease;
		transform: scaleY(0);
		transform-origin: top;
		opacity: 0;
		border-radius: 16px;
		background-color: #ffffff;
		gap: 16px;
		box-shadow: 0 5px 10px 0 #0000000D;
	}

	.vacancies-sort__menus-wrapper.active {
		transform: scaleY(1);
		opacity: 1;
	}

	.vacancies-sort__menus-wrapper .vacancies-filter__reset {
		display: flex;
		width: 100%;
		height: auto;
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		letter-spacing: 0;
		border-top: 1px solid #E5E5E5;
		padding-top: 16px;
		margin-top: 0;
	}

	.vacancies-sort__menu {
		align-items: flex-start;
		width: 100%;
		max-width: 100%;
	}

	.vacancies-sort__menu .vacancies-sort__title {
		width: 100%;
		height: auto;
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		letter-spacing: 0;
		border: none;
		padding: 0;
	}

	.new-vacancies__content {
		padding-left: 16px;
		padding-right: 16px;
		margin-top: 24px;
	}

	.vacancies-filter__reset {
		margin-top: 0;
	}

	.hero-vacancy__title {
		color: #000000;
		font-size: 24px;
		font-weight: 700;
		line-height: 32px;
		letter-spacing: 0;
	}

	.hero-vacancy__descr {
		color: #121217;
		font-size: 14px;
		font-weight: 300;
		line-height: 16px;
		letter-spacing: 0;
		padding: 0;
	}

	.nmp-hero__search-row {
		gap: 8px;
	}

	.nmp-hero__search {
		height: 40px;
		padding: 12px 16px;
	}

	.nmp-hero__search-submit {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		padding: 0;
	}

	.nmp-hero__search-submit-text {
		display: none;
	}

	.nmp-hero__search-submit-icon {
		display: block;
	}

	.nmp-floater__ai-response {
		font-size: 15px;
		line-height: 21px;
		padding: 16px 20px;
	}

	.nmp-floater__ai-response {
		max-width: 100%;
		margin-bottom: 28px;
	}

	.nmp-floater__inner {
		height: 40px;
	}

	.nmp-floater__inner::before {
		inset: -16px;
	}

	.new-vacancies__divider {
		font-size: 14px;
		line-height: 18px;
		padding: 24px 0;
	}

	.new-vacancies__container {
		flex-direction: column;
		padding: 0;
	}

	[data-filter-sentinel] {
		order: 0;
	}

	.new-vacancies__filter-wrap {
		order: 1;
		flex: 0 0 auto;
		max-width: 100%;
	}

	.new-vacancies__toolbar {
		order: 2;
		min-height: 32px;
		padding: 0 16px;
		margin-top: 40px;
		margin-bottom: 0;
	}

	.new-vacancies__content {
		order: 3;
	}

	.new-vacancies__count {
		font-size: 14px;
		line-height: 16px;
	}

	.new-vacancies__toolbar {
		flex-wrap: wrap;
		row-gap: 8px;
		column-gap: 8px;
	}

	.new-vacancies__toolbar .vacancy-sort {
		margin-left: auto;
	}

	.new-vacancies__toolbar .vacancies-sort__menus-wrapper {
		flex-wrap: wrap;
		gap: 6px;
	}

	.new-vacancies__toolbar .vacancies-sort__menu .vacancies-sort__title {
		height: 32px;
		font-size: 14px;
		line-height: 16px;
		padding: 6px 10px;
	}

	.new-vacancies__toolbar .vacancies-sort__list-wrap {
		top: 40px;
	}

	.vacancies-filter__title,
	.vacancies-sort__title {
		height: 32px;
		gap: 8px;
		padding: 6px 16px;
	}

	.vacancies-filter__list .vacancies-filter__item,
	.vacancies-sort__list .vacancies-sort__item {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		letter-spacing: 0;
	}

	.vacancies-filter__list .vacancies-filter__item h3,
	.vacancies-sort__list .vacancies-sort__item h3 {
		font-size: 14px;
		font-weight: 400;
		line-height: 16px;
		letter-spacing: 0;
		margin-bottom: 0;
	}

	.vacancy-sort {
		width: auto !important;
	}

	.vacancies-new__container .new-vacancies-container.swiper {
		overflow-x: clip !important;
		padding: 24px 16px 16px 16px;
	}

	.swiper-scrollbar {
		display: none;
	}

	.swiper-container {
		z-index: auto !important;
	}

	.new-vacancies-container {
		display: flex;
		overflow-x: clip !important;
	}

	.vacancies-filter-mobile-wrapper .swiper {
		overflow: visible;
	}

	.swiper-backface-hidden .swiper-slide {
		display: flex;
		align-items: center;
	}


	.new-vacancies-container::-webkit-scrollbar {
		display: none;
	}

	.new-vacancies__filter,
	#new-vacancies {
		flex: 0 0 100%;
		min-width: 100%;
	}

	.slide-indicators {
		display: none;
		justify-content: center;
		margin-top: 10px;
	}

	.slide-indicator {
		width: 8px;
		height: 8px;
		margin: 0 4px;
		border-radius: 50%;
		background: #ccc;
	}

	.slide-indicator.active {
		background: #333;
	}

	.vacancies-filter-swiper {
		position: relative;
		z-index: 7777;
		width: 100%;
	}

	.vacancies-filter-swiper .swiper-slide {
		display: flex;
		align-items: flex-start;
		flex-shrink: 0;
		width: auto;
		gap: 15px;
	}

	.vacancies-filter-swiper .swiper-scrollbar {
		position: relative;
		height: 3px;
		margin-top: 10px;
		background: rgba(0, 0, 0, 0.1);
	}

	.vacancies-filter-swiper .swiper-scrollbar-drag {
		background: #000;
	}

	.vacancies-new__container .new-vacancies-container.fixed-adaptive {
		position: fixed;
		z-index: 9000;
		top: 80px;
		right: 0;
		left: 0;
		background: #fff;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	}

	.swiper-backface-hidden .swiper-slide {
		backface-visibility: visible !important;
	}
}

@media (max-width: 700px) {
	.nmp-floater {
		width: calc(100% - 32px);
	}

	.nmp-floater__inner::before {
		inset: -16px -16px -45px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nmp-hero__placeholder::after,
	.nmp-hero__search-btn_spinner,
	.nmp-floater-search-btn_spinner {
		animation: none;
	}

	.nmp-floater,
	.nmp-floater--hidden,
	.nmp-floater__ai-response {
		transition: none;
	}
}