.products_title {
	text-align: center;
	padding: 0 2rem;
	margin: 6rem auto 3rem;
	font-weight: bold;
	font-size: 3rem;
	color: var(--color_grey_menu);
}

.products_text {
	text-align: center;
	padding: 0 2rem;
	margin: 0 auto 6rem;
	max-width: 800px;

	font-weight: 500;
	font-size: 1.5rem;
	color: var(--color_grey_menu);
}

.products_text a {
	text-decoration: underline;
	text-transform: capitalize;
}

.products_list_title {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 1.5rem;
	color: var(--color_grey_menu);
}

.products_list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-items: center;
	width: 75rem;
	gap: 1.5rem;
	margin: 0 auto 12rem;
	max-width: 80vw;
}

.product_list_item {
	position: relative;
/*	width: 25rem;*/
	width: 100%;
}

@media screen and (max-width: 800px) {
	.products_list {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 480px) {
	.products_list {
		grid-template-columns: 1fr;
	}
}

