.investment-wrapper {
	display: grid;
  	grid-template-columns: repeat(3, 1fr);
  	gap: 25px;
}
.investment-item {
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	background: #4E4A590D;
	padding: 20px 35px 30px;
	align-items: center;
	justify-content: center;
}
.investment-item img {
	aspect-ratio: 1;
	width: 60px;
	height: auto;
	object-fit: contain;
	margin-bottom: 13px;
}
.investment-item span {
	font-family: var(--main-font);
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: var(--e-global-color-text);
}
.investment-item  h3 {
	margin: 0;
	font-family: var(--alt-font);
	font-weight: 600;
	font-size: 30px;
	text-align: center;
	color: var(--e-global-color-primary)
}

@media(max-width: 768px) {
	.investment-wrapper {
    	grid-template-columns: repeat(1, 1fr);
    	gap: 10px;
	}
	.investment-item {
		padding: 25px 20px;
		flex-direction: row;
        justify-content: flex-start;
		gap: 20px;
	}
	.investment-item img {
		margin: 0;
	}
	.text-wrapper h3,
	.text-wrapper span {
		text-align: left;
	}
}