.whowefund .container-max-width {
	margin: auto;
	max-width: 1280px;
	padding: 0 20px;
}

.whowefund .container-max-width .filters {
	margin-bottom: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
}

.whowefund .container-max-width .filters button {
	border: 2px solid #f5f5f5;
	background-color: #f5f5f5;
	color: #d6291c;
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 0.9em;
	text-transform: uppercase;
	aspect-ratio: 1/1;
	width: calc(100% / 26);
}

.whowefund .container-max-width .filters button.active {
	border-color: #d6291c;
	background-color: white;
	color: #d6291c;
}

.whowefund .grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 5px;
}

.whowefund .grid .single-fund {
	width: 100%;
	display: flex;
	align-items: flex-start;
	gap: 5px;
	aspect-ratio: 2 / 4;
}

.whowefund .grid .single-fund:nth-child(odd) {
	flex-direction: column;
	justify-content: flex-start;
}

.whowefund .grid .single-fund:nth-child(even) {
	flex-direction: column-reverse;
	justify-content: flex-end;
}

.whowefund .grid .single-fund .logo-wrapper {
	width: 100%;
	height: 75%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: black;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.whowefund .grid .single-fund .logo-wrapper img {
	width: 100%;
	max-width: 80%;
}

.whowefund .grid .single-fund .content-wrapper {
	width: calc(100% - 80px);
	height: 25%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 40px;
}

.whowefund .grid .single-fund .content-wrapper div {
	width: fit-content;
}

.whowefund .grid .single-fund .content-wrapper div p {
	font-family: "Fire Sans", sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.2em;
}

.whowefund .grid .single-fund .content-wrapper div p a {
	font-family: "Poppins", sans-serif !important;
	font-family: inherit;
	font-size: 24px;
	font-weight: 700;
	line-height: 0.9em;
	text-transform: uppercase;
	color: inherit;
}

.whowefund .grid .single-fund .content-wrapper {
	background-color: #d6291c;
}

.whowefund .grid .single-fund .content-wrapper div p {
	color: white;
}

@media (max-width: 1280px) {
	.whowefund .container-max-width {
		max-width: 100%;
	}

	.whowefund .grid {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (max-width: 768px) {

	.whowefund .container-max-width .filters {
		flex-wrap: wrap;
	}

	.whowefund .container-max-width .filters button {
		width: 50px;
	}
	
	.whowefund .grid {
		grid-template-columns: repeat(1, 1fr);
	}

}