.top .title {
  color: var(--blue);
}

body .scrollbar-thumb {
	background: transparent;
}

body .scrollbar-track {
	background: transparent;
}

.vacancies {
	margin-top: 70px;
	padding: 0;
	flex-wrap: nowrap;
}

.vacancies .direction {
	margin: 0px 15px;
	max-width: calc(30% - 30px);
	min-width: 300px;
	flex-grow: 1;
	overflow: hidden;
}

.vacancies .direction .items {
	flex-direction: column;
	justify-content: flex-start;
}

.vacancies .direction .item {
	padding: 15px 35px;
	font-size: 28px;
	border-radius: 20px;
	cursor: pointer;
	margin-bottom: 5px;
	justify-content: flex-start;
}

.vacancies .direction .item[data-active="true"] {
	color: var(--white);
	background: var(--bg-blue);
}

.vacancies .direction .item:not([data-active="true"]):hover {
	color: var(--blue);
}

.vacancies .list {
	flex-direction: column;
	justify-content: flex-start;
	margin: 0px 15px;
	max-width: calc(70% - 30px);
	flex-grow: 1;
}

.vacancies .list div{
	display:block;
}
.vacancies .list .item {
	padding: 15px 42px;
	cursor: pointer;
	justify-content: space-between;
	border-bottom: solid 1px var(--grey4);
	flex-wrap: wrap;
    column-gap: 90px;
	display: flex;
}

.vacancies .list .item:hover {
	background: var(--bg-grey);
}

.vacancies .list .block1 {
	width:100%;
	flex:1;
	min-width: 300px;
	margin: 10px 0px;
}

.vacancies .list .name {
	font-family: var(--main-font-medium);
	font-size: 30px;
	justify-content: flex-start;
	margin-bottom: 15px;
}

.vacancies .list .description {
	font-size: 18px;
	opacity: 0.5;
	justify-content: flex-start;
}

.vacancies .list .block2 {
	font-family: var(--main-font-medium);
	color: var(--blue);
	font-size: 32px;
	white-space: nowrap;
	justify-content: flex-start;
	margin: 10px 0px;
}

.vacancies .empty {
	flex-direction: column;
	max-width: 70%;
	padding: 0px 15px;
}

.vacancies .empty .name {
	font-family: var(--main-font-medium);
	font-size: 48px;
	margin-bottom: 50px;
}

.vacancies .empty .description {
	font-size: 24px;
	margin-bottom: 60px;
}

.vacancies .empty .btn {
	max-width: 290px;
	height: 73px;
}

@media(max-width: 800px) {
	.vacancies {
		margin-top: 40px;
		padding: 0px;
		flex-wrap: wrap;
	}
	.vacancies .direction {
		flex-direction: row;
		flex-wrap: nowrap;
		max-width: 100%;
		margin: 0px 0px 30px 0px;
	}
	.vacancies .direction .items {
		flex-direction: row;
		flex-wrap: nowrap;
	}
	.vacancies .direction .item {
		margin: 0px 2.5px;
		white-space: nowrap;
		font-size: 14px;
		padding: 8.5px 12px;
		border-radius: 7px;
		border: solid 1px var(--blue);
		color: var(--blue);
	}
	.vacancies .direction .item:first-child {
		margin-left: 15px
	}
	.vacancies .direction .item:last-child {
		margin-right: 15px
	}
	.vacancies .list {
		max-width: 100%;
		margin: 0px;
	}
	.vacancies .list .item {
		padding: 10px 15px;
	}
	.vacancies .list .name {
		font-size: 20px;
	}
	.vacancies .list .description {
		font-size: 16px;
	}
	.vacancies .list .block2 {
		font-size: 18px;
		justify-content: flex-start;
	}
	.vacancies .empty {
		max-width: 100%;
	}
	.vacancies .empty .btn {
		font-size: 16px;
		height: 51px;
		width: 100%;
	}
}
