#catalog.section {
	overflow: hidden;
	position: relative;
}
.catalog-title {
	color: var(--title-black);
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 1rem;
}
.catalog-cat {
	display: flex;
	gap: 0.62rem;
	margin-bottom: 2.5rem;
	overflow-x: auto;
	width: auto;
	padding-bottom: 1rem;
	scrollbar-width: thin;
	scrollbar-color: #46708b #f1f1f1;
}
.catalog-cat::-webkit-scrollbar {
	height: 8px;
}
.catalog-cat::-webkit-scrollbar-track {
	background: #f1f1f1;
}
.catalog-cat::-webkit-scrollbar-thumb {
	background: #46708b;
}
.catalog-cat-link {
	font-size: 0.875rem;
	padding: 1rem 1.94rem;
	color: #476e87;
	line-height: normal;
	letter-spacing: 0.06rem;
	border-radius: 2rem;
	border: 1px solid rgba(0, 0, 0, 0.3);
	cursor: pointer;
	background-color: transparent;
	transition: all 0.3s ease;
	width: max-content;
}
.catalog-cat-link.active,
.catalog-cat-link:hover {
	background-color: var(--color-primary);
	color: #fff;
}
.catalog-row {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1.25rem;
	row-gap: 3rem;
}
@media screen and (min-width: 768px) {
	.catalog-cat-link {
		font-size: 1rem;
		padding: 1.06rem 3.09rem;
	}
}
