.dream-team {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 150px;
}

.dream-team__row-1,
.dream-team__row-3 {
	display: flex;
	gap: 15px;
}

.dream-team__row-1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.dream-team__row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
}

.dream-team__row-3 {
	justify-content: space-around;
}

.dream-team__title {
	display: flex;
	background: #F5F5F5;
	border-radius: 24px;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 32px;
	text-align: center;
	line-height: 1.2;
}

.dream-team__title span {
	color: #0202B3;
}

@media(max-width: 900px) {
	.dream-team__row-2,
	.dream-team__row-3 {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	
	.dream-team__row-3 img {
		width: 100%;
	}
	
	.dream-team__title {
		order: 3;
		grid-column: 1 / 3;
		padding: 30px 0;
	}
}