/*------------------------------------*\
    JOB CATEGORIES BLOCK
\*------------------------------------*/
.job-categories-main-title {
	text-align: center;
}
.job-categories-main-title:after {
	margin-left: auto;
	margin-right: auto;
}
.job-categories-main-title span {
	color: #f26522;
}
.job-categories-tab-nav {
	display: flex;
	gap: 0;
	border-bottom: 3px solid #e5e5e5;
}
.job-categories-tab-btn {
	background: none;
	border: none;
	padding: 15px 30px;
	font-size: 24px;
	font-weight: 700;
	cursor: pointer;
	color: #171614;
	position: relative;
	border-bottom: 3px solid transparent;
	margin-bottom: -3px;
	transition: color 0.2s ease;
	width: calc(100% / 3);
}
.job-categories-tab-btn span {
	color: #f26522;
}
.job-categories-tab-btn span.tab-prefix {
	color: #171614;
}
.job-categories-tab-btn.active {
	border-bottom-color: #f26522;
}
.job-categories-tab-btn:hover {
	color: #f26522;
}
.job-categories-tab-content {
	display: none;
}
.job-categories-tab-content.active {
	display: block;
}
.job-categories-list {
	list-style: none;
	margin: 0;
	padding: 5px 0 0 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0 40px;
}
.job-categories-list li {
	padding: 12px 0;
	border-bottom: 1px solid #e5e5e5;
}
.job-categories-list li a {
	color: #171614;
	text-decoration: none;
	font-weight: 400;
	transition: color 0.2s ease;
}
.job-categories-list li a:hover {
	color: #f26522;
}
.job-categories-list li:before {
	display: none;
}
.job-categories-button {
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.job-categories-list {
		grid-template-columns: repeat(3, 1fr);
	}
	.job-categories-tab-btn {
		padding: 15px 20px;
		font-size: 16px;
	}
}
@media only screen and (max-width: 670px) {
	.job-categories-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 0 20px;
	}
	.job-categories-main-title {
		font-size: 24px;
		text-transform: none;
		text-align: center;
	}
	.job-categories-tab-nav {
		flex-direction: row;
		border-bottom: none;
	}
	.job-categories-tab-btn {
		border-bottom: 3px solid #e5e5e5;
		margin-bottom: 0;
		text-align: center;
		padding: 12px 0;
		text-transform: none;
	}
	.job-categories-tab-btn span {
		text-transform: none;
	}
	.tab-prefix {
		display: none;
	}
}
