/* .category>div {
	overflow-x: scroll;
}

.category-list {
	display: flex;
}

.category-item {
	display: flex;
	flex-direction: column;
	height: 64px;
	justify-content: center;
	padding: 0 40px;
	font-size: 16px;
	color: #fff;
	white-space: nowrap;
}

.category-item.active,
.category-item:hover {
	background: var(--primary-color);
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.category {
		position: relative;
	}
}


.category {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 85%;
	margin: 0 auto;
	height: 64px;
	background-color: rgba(247, 247, 247, .5);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.category>div {
	overflow-x: scroll;
}

.category-list {
	display: flex;
}

.category-item {
	display: flex;
	flex-direction: column;
	height: 64px;
	justify-content: center;
	padding: 0 40px;
	font-size: 16px;
	color: #fff;
	white-space: nowrap;
}

.category-item.active,
.category-item:hover {
	background: var(--primary-color);
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.category {
		position: relative;
	}
} */

section.cateogry {
	margin-top: 100px;
}

.cateogry a {
	font-size: 16px;
	border: 0px;
	color: #333;
	font-weight: 500;
	padding: 15px 25px;
	margin-left: 5px;
	letter-spacing: 0.5px;
	line-height: 1.2;
	background: rgb(239 239 239);
	margin-bottom: 5px;
}

.cateogry a.active,
.cateogry a:hover {
	background: rgb(255, 179, 0);
	color: rgb(255, 255, 255);
}

@media screen and (min-width: 768px) {

	section.cateogry {
		margin: 20px 0 0;
	}

}