.categories-section {
	padding: 5rem 0;
}
.categories-wrapper {
	margin-bottom: 2rem;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 0.8rem;
}
.section-header {
	padding: 2.3rem 2rem;
	border-bottom: 1px solid #ddd;
	font-size: 2.4rem;
}

.categories-list {
	overflow: hidden;
}
.categories-list > li {
	float: left;
	width: 25%;
	padding: 2rem;
}
.category-title {
	margin-bottom: 1rem;
	font-size: 2rem;
	text-transform: uppercase;
}
.category-sub li a {
	display: block;
	padding: 0.6rem 1.2rem;
}
.category-sub li a span {
	position: relative;
	top: -0.2rem;
	display: inline-block;
	margin-left: 0.5rem;
	padding: 0.3rem 0.8rem;
	background-color: #cbd3ff;
	border-radius: 0.8rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
}
@media screen and (max-width:1024px) {
	.categories-list > li {
		width: 33.33%;
	}
}
@media screen and (max-width:768px) {
	.categories-list > li {
		width: 50%;
	}
}
@media screen and (max-width:567px) {
	.categories-list > li {
		width: 100%;
	}
}