.catalog-main {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 10px;
	flex-wrap: nowrap;
}

.catalog-main .catalog-main-title {
	width: 100%;
	font-size: 2rem;
	text-transform: uppercase;
	color: grey;
	font-weight: 200;
	text-align: center;
	margin-top: 0;
}

.catalog-main .catalog-item {
	width: 28em;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	height: auto;
	gap: 5px;
	margin-left: 10px;
	padding-left: 2.75em;
}

.catalog-main .catalog-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 2.75em;
	height: 2.75em;
	background-image: url("./icon/pdf-file.png");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.catalog-main .catalog-item .catalog-item-footer {
	display: flex;
	flex-direction: row;
	color: grey;
	gap: 2px;
}