.title-products {
	text-align: center;
	font-weight: bold;
	font-size: 2rem;
	margin: 1rem 0;
}
.description-categories {
	text-align: center;
	font-weight: normal;
	width: 60%;
	margin: auto;
}

.container-categorias {
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
	padding: 0 2rem;
	background-color: #f5f5f5;
}

@media (min-width: 640px) {
	.container-categorias {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 2rem;
	}
}
.categoria-producto {
	width: 90%;
	margin: 2rem auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem;
	background-color: #fff;
}
.categoria-producto p {
	margin-top: 1rem;
	font-size: 1.1rem;
	font-weight: 400;
	font-style: normal;
}
.categoria-producto p span {
	font-size: 1.3rem;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
	color: #7744D9;
}
.categoria-producto:hover {
	border-bottom: .1rem solid gray;
}
.image-categorie {
	height: 19rem;
	width: 100%;
	object-fit: fill;
}