/* ===== Text With Black Grid ===== */
.textWithBlackGrid {
	padding-top: 144px;
	text-align: center;
}

/* Header */
.textWithBlackGrid__title {
	font-size: 64px;
    line-height: 74px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 43px 0;
    font-family: 'Plaax 6 Ney Heavy';
    text-align: center;
}

.textWithBlackGrid__description {
	font-size: 16px;
    line-height: 140%;
    color: #222;
    margin: 0;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 48px;
}

.textWithBlackGrid__description p:last-child {
	margin: 0;
}

/* Grid */
.textWithBlackGrid__grid {
	display: flex;
	gap: 40px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Card */
.textWithBlackGrid__card {
	background: #000;
	color: #fff;
	padding: 40px 30px;
	flex: 1 1 calc(33.333% - 40px);
	max-width: 400px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.textWithBlackGrid__card-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.textWithBlackGrid__card-text {
	font-size: 16px;
	line-height: 140%;
	color: #eaeaea;
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
	.textWithBlackGrid {
		padding-top: 72px;
	}
	
	.textWithBlackGrid__title {
		font-size: 45px;
		line-height: 45px;
	}

	.textWithBlackGrid__card {
		flex: 1 1 calc(50% - 30px);
		max-width: 100%;
	}
}

@media (max-width: 769px) {
	.textWithBlackGrid__title {
		font-size: 30px;
		line-height: 35px;
		margin-bottom: 30px;
	}

	.textWithBlackGrid__card {
		flex: 1 1 100%;
		padding: 28px 22px;
	}

	.textWithBlackGrid__card-title {
		font-size: 18px;
	}

	.textWithBlackGrid__card-text {
		font-size: 14px;
	}
}