.service-category{
	margin: 40px 0;
	border-bottom: 0.8px solid #C1C1C1;
	padding: 40px;
}

.service-category .title {
	font-family: Ford Antenna;
	font-weight: 600;
	font-size: 40px;
	/* line-height: 100%; */
	color: #1F7BFF;
	text-align: center;
	margin-bottom: 40px;
}
.service-category .content {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}
.service-category .content ul {
	 display: inline-block; 
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.service-category .content ul>li{
	display: inline-block; 
	margin: 5px;
	border: 1px solid #ddd;
	width: fit-content;
	border-radius: 4px;
}
.service-category .content ul>li.active,
.service-category .content ul>li:hover{
	border-color: #3975EA;
}

.service-category .content ul>li a{
	display: block;
	padding: 10px 16px;
	
}
.service-category .content ul>li a{
	font-family: Google Sans;
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	text-align: center;
	color: #2E2E2E;
	max-width: 230px;
	text-overflow: ellipsis;
	overflow: hidden;
}
.service-category .content ul>li.active a {
	color: #3975EA;
}
.service-category .content ul>li.active a:before{
	content: '\f00c';
	font-family: 'Font Awesome 5 Pro';
	padding-right: 5px;
}
@media only screen and (max-width: 768px){
	.service-category{
		width: calc(100vw - 40px);
		margin: 20px;
		padding: 0;
		padding-bottom: 20px;
	}
	.service-category .title{
		font-size: 28px;
		margin-bottom: 20px;
	}
	.service-category .content ul{
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
	}
	.service-category .content ul>li{
		width: calc(50% - 10px);
		margin: 0;
		overflow: hidden;
	}
	.service-category .content ul>li a{
		font-size: 14px;
	}
}