.technologyTools {
	width: 100%;
	font-size: 1rem;
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: auto 1fr;
	grid-template-areas:
		'title'
		'content';
	gap: 1em;
	justify-items: center;
}

.technologyTools__title {
	text-align: center;
	margin: 0;
}

.technologyTools__content {
	width: 80%;
	padding-bottom: 1em;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1em;
	grid-area: content;
}

.technologyTools__item {
	width: 9.375em;
	height: 11.25em;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1em;
	border: 0.0625em solid var(--color-lighter);
	padding: 1.5em;
	border-radius: var(--border-radius);
	background-color: var(--color);
}

.technologyTools__icon {
	height: 8.75em;
	font-size: 6.25em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.technologyTools__text {
	font-size: 1.2em;
	font-weight: bold;
}
